結果

問題 No.1013 〇マス進む
ユーザー maspymaspy
提出日時 2020-03-21 00:18:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 62,740 KB
最終ジャッジ日時 2024-12-15 22:13:01
合計ジャッジ時間 40,581 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 430 ms
44,576 KB
testcase_01 AC 425 ms
44,056 KB
testcase_02 AC 438 ms
43,944 KB
testcase_03 AC 433 ms
44,200 KB
testcase_04 AC 427 ms
44,328 KB
testcase_05 AC 427 ms
44,204 KB
testcase_06 AC 435 ms
44,192 KB
testcase_07 AC 454 ms
44,196 KB
testcase_08 AC 425 ms
44,584 KB
testcase_09 AC 428 ms
44,584 KB
testcase_10 AC 427 ms
44,572 KB
testcase_11 AC 429 ms
44,332 KB
testcase_12 AC 428 ms
44,452 KB
testcase_13 AC 433 ms
44,452 KB
testcase_14 AC 481 ms
51,556 KB
testcase_15 AC 513 ms
57,752 KB
testcase_16 AC 516 ms
55,932 KB
testcase_17 AC 475 ms
50,332 KB
testcase_18 AC 488 ms
51,468 KB
testcase_19 AC 461 ms
48,160 KB
testcase_20 AC 529 ms
60,504 KB
testcase_21 AC 469 ms
49,440 KB
testcase_22 AC 483 ms
51,728 KB
testcase_23 AC 478 ms
44,968 KB
testcase_24 AC 540 ms
61,236 KB
testcase_25 AC 532 ms
60,776 KB
testcase_26 AC 483 ms
44,580 KB
testcase_27 AC 530 ms
49,408 KB
testcase_28 AC 460 ms
44,832 KB
testcase_29 AC 530 ms
60,372 KB
testcase_30 AC 457 ms
48,428 KB
testcase_31 AC 520 ms
53,872 KB
testcase_32 AC 534 ms
50,580 KB
testcase_33 AC 523 ms
50,844 KB
testcase_34 AC 560 ms
57,144 KB
testcase_35 AC 571 ms
56,284 KB
testcase_36 AC 478 ms
44,316 KB
testcase_37 AC 490 ms
44,320 KB
testcase_38 AC 624 ms
58,620 KB
testcase_39 AC 524 ms
47,388 KB
testcase_40 AC 644 ms
57,044 KB
testcase_41 AC 510 ms
44,716 KB
testcase_42 AC 541 ms
50,348 KB
testcase_43 AC 533 ms
47,904 KB
testcase_44 AC 561 ms
50,876 KB
testcase_45 AC 537 ms
49,928 KB
testcase_46 AC 511 ms
45,096 KB
testcase_47 AC 559 ms
50,180 KB
testcase_48 AC 578 ms
51,876 KB
testcase_49 AC 614 ms
56,588 KB
testcase_50 AC 589 ms
54,752 KB
testcase_51 AC 573 ms
52,240 KB
testcase_52 AC 505 ms
44,316 KB
testcase_53 AC 530 ms
44,320 KB
testcase_54 AC 584 ms
56,540 KB
testcase_55 AC 505 ms
46,752 KB
testcase_56 AC 642 ms
59,940 KB
testcase_57 AC 576 ms
54,712 KB
testcase_58 AC 658 ms
62,660 KB
testcase_59 AC 659 ms
62,500 KB
testcase_60 AC 676 ms
62,740 KB
testcase_61 AC 590 ms
61,752 KB
testcase_62 AC 568 ms
61,404 KB
testcase_63 AC 516 ms
43,944 KB
testcase_64 AC 500 ms
44,452 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