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 | 31 |
Tags
- englishbook
- readingbook
- sw expert
- 알고리즘
- STUDYENGLISH
- 원서읽자
- 원서
- 코테
- SQL
- 백준
- 알고리즘 문제
- 완전탐색
- PyQt
- BFS
- English
- D4
- the midnight library
- 삼성
- 쉬운 알고리즘 문제
- nightroutine
- 원서읽기
- 코테 준비
- 직무면접
- sw expert academy
- 코테 대비
- MySQL
- swexpertacademy
- 프로그래머스
- dfs
- 코딩테스트
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