Recent Posts
Notice
No Rules Rules
몇개고? (feat. 백준, 27294번) 본문
728x90
반응형
몇개고?
https://www.acmicpc.net/problem/27294
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int T, S;
cin >> T >> S;
if(S == 0 && (12 <= T && T <= 16))
cout << "320";
else
cout << "280";
return 0;
}
// *&)*@*
반응형
문제의 조건에 따라 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
나는 요리사다 (feat. 백준, 2953번) (0) | 2023.01.31 |
---|---|
집합 (feat. 백준, 11723번) (0) | 2023.01.31 |
N번째 큰 수 (feat. 백준, 2075번) (0) | 2023.01.27 |
장기자랑 (feat. 백준, 27277번) (0) | 2023.01.27 |
피시방 알바 (feat. 백준, 1453번) (0) | 2023.01.27 |
Comments