結果

問題 No.1013 〇マス進む
ユーザー kotatsugamekotatsugame
提出日時 2020-03-24 20:38:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 65,704 KB
実行使用メモリ 34,956 KB
最終ジャッジ日時 2024-12-31 17:45:24
合計ジャッジ時間 11,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
34,248 KB
testcase_01 AC 7 ms
32,204 KB
testcase_02 AC 7 ms
34,252 KB
testcase_03 AC 8 ms
32,208 KB
testcase_04 AC 7 ms
32,336 KB
testcase_05 AC 7 ms
32,216 KB
testcase_06 AC 8 ms
34,380 KB
testcase_07 AC 9 ms
34,256 KB
testcase_08 AC 7 ms
32,348 KB
testcase_09 AC 9 ms
34,380 KB
testcase_10 AC 9 ms
32,216 KB
testcase_11 AC 8 ms
32,204 KB
testcase_12 AC 9 ms
34,256 KB
testcase_13 AC 14 ms
32,396 KB
testcase_14 AC 97 ms
33,204 KB
testcase_15 AC 151 ms
33,928 KB
testcase_16 AC 139 ms
33,828 KB
testcase_17 AC 83 ms
32,984 KB
testcase_18 AC 105 ms
34,640 KB
testcase_19 AC 64 ms
32,812 KB
testcase_20 AC 184 ms
34,328 KB
testcase_21 AC 76 ms
34,544 KB
testcase_22 AC 104 ms
33,412 KB
testcase_23 AC 37 ms
32,596 KB
testcase_24 AC 190 ms
34,932 KB
testcase_25 AC 188 ms
34,956 KB
testcase_26 AC 39 ms
32,600 KB
testcase_27 AC 74 ms
34,400 KB
testcase_28 AC 40 ms
32,600 KB
testcase_29 AC 180 ms
34,848 KB
testcase_30 AC 67 ms
32,944 KB
testcase_31 AC 122 ms
33,552 KB
testcase_32 AC 89 ms
33,160 KB
testcase_33 AC 93 ms
33,176 KB
testcase_34 AC 149 ms
33,884 KB
testcase_35 AC 141 ms
34,680 KB
testcase_36 AC 17 ms
32,408 KB
testcase_37 AC 16 ms
32,280 KB
testcase_38 AC 164 ms
34,880 KB
testcase_39 AC 59 ms
32,732 KB
testcase_40 AC 150 ms
33,860 KB
testcase_41 AC 41 ms
32,736 KB
testcase_42 AC 95 ms
33,208 KB
testcase_43 AC 61 ms
32,768 KB
testcase_44 AC 97 ms
33,184 KB
testcase_45 AC 86 ms
33,220 KB
testcase_46 AC 46 ms
32,504 KB
testcase_47 AC 91 ms
33,144 KB
testcase_48 AC 107 ms
33,396 KB
testcase_49 AC 153 ms
34,816 KB
testcase_50 AC 127 ms
33,552 KB
testcase_51 AC 116 ms
34,580 KB
testcase_52 AC 28 ms
32,376 KB
testcase_53 AC 37 ms
34,372 KB
testcase_54 AC 147 ms
33,920 KB
testcase_55 AC 49 ms
32,652 KB
testcase_56 AC 183 ms
34,928 KB
testcase_57 AC 125 ms
33,560 KB
testcase_58 AC 209 ms
34,624 KB
testcase_59 AC 211 ms
34,648 KB
testcase_60 AC 203 ms
34,812 KB
testcase_61 AC 192 ms
34,448 KB
testcase_62 AC 188 ms
34,516 KB
testcase_63 AC 7 ms
34,256 KB
testcase_64 AC 7 ms
32,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int N,K;
long tb[30][1<<17];
long ans[1<<17];
main()
{
	cin>>N>>K;
	for(int i=0;i<N;i++)
	{
		cin>>tb[0][i];
		ans[i]=i;
	}
	for(int k=1;k<30;k++)
	{
		for(int i=0;i<N;i++)
		{
			tb[k][i]=tb[k-1][i]+tb[k-1][(i+tb[k-1][i])%N];
		}
	}
	for(int k=0;k<30;k++)
	{
		if(K>>k&1)
		{
			for(int i=0;i<N;i++)ans[i]+=tb[k][ans[i]%N];
		}
	}
	for(int i=0;i<N;i++)cout<<ans[i]+1<<endl;
}
0