Recent Posts
Notice
No Rules Rules
안녕 클레오파트라 세상에서 제일가는 포테이토칩 (feat. 백준, 25904번) 본문
728x90
반응형
안녕 클레오파트라 세상에서 제일가는 포테이토칩
https://www.acmicpc.net/problem/25904
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main(){
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, X, arr[100];
cin >> N >> X;
for(register int n = 0; n < N; ++n)
cin >> arr[n];
register int cnt = 0;
while(1){
cnt %= N;
if(X++ > arr[cnt++])
break;
}
cout << cnt;
return 0;
}
// *&)*@*
반응형
단순 연산 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
하노이 탑 (feat. 백준, 1914번) (0) | 2022.11.01 |
---|---|
장인은 도구를 탓하지 않는다 (feat. 백준, 25905번) (0) | 2022.10.31 |
파티 (feat. 백준, 1238번) (0) | 2022.10.27 |
쇠막대기 (feat. 백준, 10799번) (0) | 2022.10.27 |
Router (feat. 백준, 15828번) (0) | 2022.10.27 |
Comments