結果

問題 No.1013 〇マス進む
ユーザー maspymaspy
提出日時 2020-03-21 00:18:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 759 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 62,228 KB
最終ジャッジ日時 2024-05-09 10:09:48
合計ジャッジ時間 46,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 544 ms
44,064 KB
testcase_01 AC 545 ms
44,324 KB
testcase_02 AC 540 ms
44,320 KB
testcase_03 AC 549 ms
44,324 KB
testcase_04 AC 546 ms
44,192 KB
testcase_05 AC 559 ms
44,192 KB
testcase_06 AC 554 ms
43,936 KB
testcase_07 AC 546 ms
44,076 KB
testcase_08 AC 543 ms
44,320 KB
testcase_09 AC 551 ms
44,192 KB
testcase_10 AC 556 ms
44,076 KB
testcase_11 AC 548 ms
43,936 KB
testcase_12 AC 544 ms
44,068 KB
testcase_13 AC 547 ms
44,068 KB
testcase_14 AC 602 ms
51,112 KB
testcase_15 AC 639 ms
57,796 KB
testcase_16 AC 628 ms
56,192 KB
testcase_17 AC 588 ms
49,832 KB
testcase_18 AC 611 ms
51,376 KB
testcase_19 AC 572 ms
48,364 KB
testcase_20 AC 655 ms
60,816 KB
testcase_21 AC 575 ms
49,192 KB
testcase_22 AC 601 ms
52,132 KB
testcase_23 AC 561 ms
44,184 KB
testcase_24 AC 660 ms
61,228 KB
testcase_25 AC 661 ms
61,084 KB
testcase_26 AC 562 ms
44,452 KB
testcase_27 AC 575 ms
49,192 KB
testcase_28 AC 553 ms
44,444 KB
testcase_29 AC 656 ms
60,480 KB
testcase_30 AC 594 ms
48,040 KB
testcase_31 AC 606 ms
53,660 KB
testcase_32 AC 602 ms
50,848 KB
testcase_33 AC 629 ms
50,460 KB
testcase_34 AC 687 ms
56,572 KB
testcase_35 AC 652 ms
56,032 KB
testcase_36 AC 542 ms
44,196 KB
testcase_37 AC 549 ms
44,576 KB
testcase_38 AC 689 ms
58,040 KB
testcase_39 AC 581 ms
47,400 KB
testcase_40 AC 686 ms
57,176 KB
testcase_41 AC 566 ms
44,580 KB
testcase_42 AC 614 ms
50,468 KB
testcase_43 AC 595 ms
47,276 KB
testcase_44 AC 617 ms
50,480 KB
testcase_45 AC 607 ms
49,576 KB
testcase_46 AC 570 ms
44,836 KB
testcase_47 AC 606 ms
50,080 KB
testcase_48 AC 616 ms
51,484 KB
testcase_49 AC 693 ms
56,668 KB
testcase_50 AC 643 ms
54,816 KB
testcase_51 AC 629 ms
52,336 KB
testcase_52 AC 557 ms
43,944 KB
testcase_53 AC 562 ms
44,324 KB
testcase_54 AC 653 ms
55,796 KB
testcase_55 AC 573 ms
46,372 KB
testcase_56 AC 728 ms
59,516 KB
testcase_57 AC 648 ms
54,052 KB
testcase_58 AC 742 ms
62,048 KB
testcase_59 AC 759 ms
62,228 KB
testcase_60 AC 743 ms
62,212 KB
testcase_61 AC 673 ms
61,428 KB
testcase_62 AC 652 ms
61,588 KB
testcase_63 AC 544 ms
44,324 KB
testcase_64 AC 542 ms
44,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np


N, K = map(int, readline().split())
P = np.array(read().split(), np.int64)
rng = np.arange(N, dtype=np.int64)
X = np.arange(N)
while K:
    if K & 1:
        X += P[X % N]
    K //= 2
    P += P[(P + rng) % N]
X += 1
print('\n'.join(X.astype(str)))
0