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
- nightroutine
- SQL
- 원서읽기
- 완전탐색
- BFS
- PyQt
- 백준
- 코테
- 코딩테스트
- STUDYENGLISH
- 원서
- 코테 준비
- sw expert
- MySQL
- English
- dfs
- 삼성
- readingbook
- englishbook
- D4
- the midnight library
- 코테 대비
- 원서읽자
- sw expert academy
- swexpertacademy
- 쉬운 알고리즘 문제
- 프로그래머스
- 알고리즘 문제
- 직무면접
- 알고리즘
Archives
- Today
- Total
시나브로
[D3] 3456. 직사각형 길이 찾기 본문
728x90
#include<stdio.h>
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);
}
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D3] 7087. 문제 제목 붙이기 (0) | 2019.10.06 |
---|---|
[D4] 6719. 성수의 프로그래밍 강좌 시청 (0) | 2019.10.06 |
[D3] 6913. 동철이의 프로그래밍 대회 (0) | 2019.10.06 |
[D2] 2007. 패턴 마디의 길이 (0) | 2019.10.06 |
[D3] 1206. [S/W 문제해결 기본] 1일차 - View (0) | 2019.10.06 |
Comments