結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 4 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,824 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 99 ms
15,232 KB
testcase_15 AC 169 ms
22,528 KB
testcase_16 AC 151 ms
20,992 KB
testcase_17 AC 86 ms
13,696 KB
testcase_18 AC 115 ms
16,000 KB
testcase_19 AC 66 ms
10,880 KB
testcase_20 AC 202 ms
27,136 KB
testcase_21 AC 79 ms
12,672 KB
testcase_22 AC 116 ms
16,640 KB
testcase_23 AC 39 ms
7,552 KB
testcase_24 AC 210 ms
27,776 KB
testcase_25 AC 208 ms
27,136 KB
testcase_26 AC 37 ms
7,552 KB
testcase_27 AC 73 ms
12,288 KB
testcase_28 AC 37 ms
7,424 KB
testcase_29 AC 200 ms
26,496 KB
testcase_30 AC 71 ms
11,136 KB
testcase_31 AC 128 ms
18,560 KB
testcase_32 AC 93 ms
14,720 KB
testcase_33 AC 101 ms
14,848 KB
testcase_34 AC 170 ms
21,504 KB
testcase_35 AC 169 ms
20,480 KB
testcase_36 AC 13 ms
6,820 KB
testcase_37 AC 12 ms
6,816 KB
testcase_38 AC 186 ms
23,424 KB
testcase_39 AC 64 ms
9,600 KB
testcase_40 AC 188 ms
21,504 KB
testcase_41 AC 42 ms
7,552 KB
testcase_42 AC 102 ms
14,208 KB
testcase_43 AC 63 ms
10,240 KB
testcase_44 AC 105 ms
14,976 KB
testcase_45 AC 96 ms
13,440 KB
testcase_46 AC 48 ms
8,064 KB
testcase_47 AC 98 ms
14,208 KB
testcase_48 AC 120 ms
16,128 KB
testcase_49 AC 197 ms
21,504 KB
testcase_50 AC 141 ms
18,688 KB
testcase_51 AC 131 ms
17,152 KB
testcase_52 AC 27 ms
6,816 KB
testcase_53 AC 38 ms
7,168 KB
testcase_54 AC 156 ms
20,352 KB
testcase_55 AC 50 ms
8,320 KB
testcase_56 AC 220 ms
24,960 KB
testcase_57 AC 149 ms
18,048 KB
testcase_58 AC 278 ms
28,160 KB
testcase_59 AC 256 ms
28,160 KB
testcase_60 AC 232 ms
28,288 KB
testcase_61 AC 206 ms
28,288 KB
testcase_62 AC 203 ms
28,160 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 2 ms
6,820 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