結果

問題 No.1013 〇マス進む
ユーザー 沙耶花沙耶花
提出日時 2020-03-20 22:03:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 2,279 ms
コンパイル使用メモリ 205,204 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-05-08 22:07:46
合計ジャッジ時間 12,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 111 ms
15,232 KB
testcase_15 AC 194 ms
22,528 KB
testcase_16 AC 171 ms
20,992 KB
testcase_17 AC 97 ms
13,696 KB
testcase_18 AC 125 ms
16,000 KB
testcase_19 AC 72 ms
10,752 KB
testcase_20 AC 237 ms
27,008 KB
testcase_21 AC 89 ms
12,928 KB
testcase_22 AC 127 ms
16,384 KB
testcase_23 AC 40 ms
7,552 KB
testcase_24 AC 235 ms
27,776 KB
testcase_25 AC 233 ms
27,264 KB
testcase_26 AC 41 ms
7,552 KB
testcase_27 AC 82 ms
12,288 KB
testcase_28 AC 41 ms
7,552 KB
testcase_29 AC 229 ms
26,368 KB
testcase_30 AC 79 ms
11,264 KB
testcase_31 AC 149 ms
18,688 KB
testcase_32 AC 103 ms
14,720 KB
testcase_33 AC 112 ms
14,720 KB
testcase_34 AC 192 ms
21,376 KB
testcase_35 AC 191 ms
20,352 KB
testcase_36 AC 13 ms
5,376 KB
testcase_37 AC 12 ms
5,376 KB
testcase_38 AC 209 ms
23,296 KB
testcase_39 AC 69 ms
9,856 KB
testcase_40 AC 217 ms
21,248 KB
testcase_41 AC 47 ms
7,552 KB
testcase_42 AC 115 ms
14,208 KB
testcase_43 AC 72 ms
10,240 KB
testcase_44 AC 119 ms
14,720 KB
testcase_45 AC 104 ms
13,440 KB
testcase_46 AC 52 ms
8,064 KB
testcase_47 AC 109 ms
14,080 KB
testcase_48 AC 130 ms
16,128 KB
testcase_49 AC 222 ms
21,376 KB
testcase_50 AC 159 ms
18,688 KB
testcase_51 AC 144 ms
17,024 KB
testcase_52 AC 29 ms
5,888 KB
testcase_53 AC 41 ms
7,040 KB
testcase_54 AC 170 ms
20,352 KB
testcase_55 AC 57 ms
8,320 KB
testcase_56 AC 248 ms
24,960 KB
testcase_57 AC 178 ms
18,048 KB
testcase_58 AC 300 ms
28,288 KB
testcase_59 AC 295 ms
28,288 KB
testcase_60 AC 256 ms
28,288 KB
testcase_61 AC 231 ms
28,288 KB
testcase_62 AC 220 ms
28,160 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000


int main(){
    
	long long N,K;
	cin>>N>>K;
	
	vector<long long> P(N);
	for(int i=0;i<N;i++){
		cin>>P[i];
	}
	
	vector<vector<long long>> NEXT(30,vector<long long>(N,0));
	
	for(int i=0;i<30;i++){
		for(int j=0;j<N;j++){
			if(i==0){
				NEXT[i][j] = P[j];
				continue;
			}
			NEXT[i][j] = NEXT[i-1][j] + NEXT[i-1][(NEXT[i-1][j]+j)%N];
		}
	}
	
	for(int i=0;i<N;i++){
		long long ans = i;
		for(int j=0;j<30;j++){
			if((1<<j)&K){
				ans += NEXT[j][ans%N];
			}
		}
		
		cout<<ans+1<<endl;
	}
	
	
	
    return 0;
}
0