結果

問題 No.1013 〇マス進む
ユーザー tailstails
提出日時 2021-02-12 10:24:38
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,205 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 37,616 KB
最終ジャッジ日時 2024-07-19 04:49:46
合計ジャッジ時間 26,686 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 7 ms
6,812 KB
testcase_02 AC 8 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 9 ms
6,944 KB
testcase_06 AC 9 ms
6,944 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 10 ms
6,944 KB
testcase_11 AC 10 ms
6,944 KB
testcase_12 AC 11 ms
6,944 KB
testcase_13 AC 29 ms
7,040 KB
testcase_14 AC 313 ms
20,884 KB
testcase_15 AC 477 ms
30,464 KB
testcase_16 AC 409 ms
28,272 KB
testcase_17 AC 226 ms
18,956 KB
testcase_18 AC 305 ms
21,972 KB
testcase_19 AC 149 ms
15,376 KB
testcase_20 AC 531 ms
36,180 KB
testcase_21 AC 215 ms
17,876 KB
testcase_22 AC 298 ms
22,680 KB
testcase_23 AC 91 ms
11,276 KB
testcase_24 AC 590 ms
37,156 KB
testcase_25 AC 569 ms
36,192 KB
testcase_26 AC 101 ms
11,300 KB
testcase_27 AC 194 ms
17,332 KB
testcase_28 AC 86 ms
11,352 KB
testcase_29 AC 521 ms
35,312 KB
testcase_30 AC 191 ms
16,060 KB
testcase_31 AC 358 ms
25,324 KB
testcase_32 AC 252 ms
20,376 KB
testcase_33 AC 496 ms
20,376 KB
testcase_34 AC 765 ms
29,104 KB
testcase_35 AC 769 ms
27,680 KB
testcase_36 AC 55 ms
7,424 KB
testcase_37 AC 53 ms
7,168 KB
testcase_38 AC 845 ms
31,472 KB
testcase_39 AC 275 ms
14,120 KB
testcase_40 AC 819 ms
29,004 KB
testcase_41 AC 196 ms
11,444 KB
testcase_42 AC 469 ms
19,904 KB
testcase_43 AC 278 ms
14,784 KB
testcase_44 AC 518 ms
20,652 KB
testcase_45 AC 438 ms
18,700 KB
testcase_46 AC 216 ms
11,852 KB
testcase_47 AC 427 ms
19,620 KB
testcase_48 AC 527 ms
22,244 KB
testcase_49 AC 798 ms
28,796 KB
testcase_50 AC 688 ms
25,324 KB
testcase_51 AC 578 ms
23,336 KB
testcase_52 AC 123 ms
9,344 KB
testcase_53 AC 174 ms
10,732 KB
testcase_54 AC 757 ms
27,600 KB
testcase_55 AC 228 ms
12,308 KB
testcase_56 AC 1,045 ms
33,476 KB
testcase_57 AC 683 ms
24,576 KB
testcase_58 AC 1,164 ms
37,612 KB
testcase_59 AC 1,205 ms
37,616 KB
testcase_60 AC 1,167 ms
37,612 KB
testcase_61 AC 515 ms
37,616 KB
testcase_62 AC 317 ms
37,612 KB
testcase_63 AC 8 ms
6,944 KB
testcase_64 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$k)=glob<>;
@p=glob<>;
@a=0..$#p;
while($k){
	map$_+=$p[$_%$n],@a if$k&1;
	@p=map$p[$_]+$p[($_+$p[$_])%$n],0..$#p;
	$k>>=1;
}
print map{$_+1,$/}@a;
0