Recent Posts
Notice
No Rules Rules
코딩은 체육과목 입니다 (feat. 백준, 25314번) 본문
728x90
반응형
코딩은 체육과목 입니다
https://www.acmicpc.net/problem/25314
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N, N >>= 2;
for(register int n = 0; n < N; ++n)
cout << "long ";
cout << "int";
return 0;
}
// *&)*@*
반응형
4의 배수마다 long 을 출력하고 마지막에 int 를 출력하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
공 넣기 (feat. 백준, 10810번) (0) | 2023.02.21 |
---|---|
2023년은 검은 토끼의 해 (feat. 백준, 27494번) (0) | 2023.02.21 |
슈퍼 마리오 (feat. 백준, 2851번) (0) | 2023.02.20 |
후위 표기식 (feat. 백준, 1918번) (0) | 2023.02.20 |
스네이크버드 (feat. 백준, 16435번) (0) | 2023.02.20 |
Comments