250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- D4
- English
- dfs
- 프로그래머스
- 코테
- sw expert academy
- nightroutine
- 완전탐색
- 코딩테스트
- 알고리즘 문제
- PyQt
- 원서읽자
- 쉬운 알고리즘 문제
- readingbook
- STUDYENGLISH
- 원서읽기
- BFS
- 코테 준비
- swexpertacademy
- 알고리즘
- englishbook
- the midnight library
- sw expert
- 원서
- SQL
- 직무면접
- 백준
- 삼성
- MySQL
- 코테 대비
Archives
- Today
- Total
목록3456 (1)
시나브로
[D3] 3456. 직사각형 길이 찾기
#include int main(void){ int test_number=0; int a=1; for(scanf("%d",&test_number);test_number>0;test_number--){ int one,two,three; scanf("%d %d %d",&one,&two,&three); if(one==three) printf("#%d %d\n",a++,two); else if(one==two) printf("#%d %d\n",a++,three); else if(two=three) printf("#%d %d\n",a++,one); } }
알고리즘/SW Expert Academy
2019. 10. 6. 10:51