結果

問題 No.1013 〇マス進む
ユーザー kotatsugamekotatsugame
提出日時 2020-03-24 20:38:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 65,528 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-06-10 06:33:29
合計ジャッジ時間 8,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 90 ms
15,104 KB
testcase_15 AC 149 ms
22,272 KB
testcase_16 AC 132 ms
20,736 KB
testcase_17 AC 81 ms
13,696 KB
testcase_18 AC 98 ms
16,128 KB
testcase_19 AC 57 ms
11,008 KB
testcase_20 AC 179 ms
26,624 KB
testcase_21 AC 72 ms
12,800 KB
testcase_22 AC 100 ms
16,512 KB
testcase_23 AC 34 ms
7,680 KB
testcase_24 AC 181 ms
27,264 KB
testcase_25 AC 179 ms
26,752 KB
testcase_26 AC 33 ms
7,680 KB
testcase_27 AC 70 ms
12,416 KB
testcase_28 AC 34 ms
7,680 KB
testcase_29 AC 180 ms
25,984 KB
testcase_30 AC 60 ms
11,392 KB
testcase_31 AC 112 ms
18,432 KB
testcase_32 AC 84 ms
14,592 KB
testcase_33 AC 88 ms
14,720 KB
testcase_34 AC 140 ms
21,376 KB
testcase_35 AC 143 ms
20,352 KB
testcase_36 AC 12 ms
5,376 KB
testcase_37 AC 10 ms
5,376 KB
testcase_38 AC 157 ms
23,168 KB
testcase_39 AC 52 ms
9,728 KB
testcase_40 AC 145 ms
21,248 KB
testcase_41 AC 35 ms
7,808 KB
testcase_42 AC 86 ms
14,208 KB
testcase_43 AC 54 ms
10,368 KB
testcase_44 AC 89 ms
14,720 KB
testcase_45 AC 86 ms
13,568 KB
testcase_46 AC 40 ms
8,192 KB
testcase_47 AC 85 ms
14,208 KB
testcase_48 AC 101 ms
16,256 KB
testcase_49 AC 146 ms
21,120 KB
testcase_50 AC 120 ms
18,432 KB
testcase_51 AC 107 ms
17,024 KB
testcase_52 AC 22 ms
6,272 KB
testcase_53 AC 31 ms
7,424 KB
testcase_54 AC 131 ms
20,352 KB
testcase_55 AC 43 ms
8,448 KB
testcase_56 AC 184 ms
24,832 KB
testcase_57 AC 120 ms
17,920 KB
testcase_58 AC 199 ms
27,776 KB
testcase_59 AC 199 ms
27,904 KB
testcase_60 AC 200 ms
27,776 KB
testcase_61 AC 183 ms
27,904 KB
testcase_62 AC 181 ms
27,776 KB
testcase_63 AC 2 ms
5,376 KB
testcase_64 AC 2 ms
5,376 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