結果

問題 No.1013 〇マス進む
ユーザー neterukunneterukun
提出日時 2020-03-31 03:37:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 113,572 KB
最終ジャッジ日時 2024-06-23 14:43:47
合計ジャッジ時間 9,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,304 KB
testcase_01 AC 37 ms
53,724 KB
testcase_02 AC 37 ms
52,704 KB
testcase_03 AC 48 ms
62,300 KB
testcase_04 AC 47 ms
62,472 KB
testcase_05 AC 48 ms
62,604 KB
testcase_06 AC 50 ms
63,368 KB
testcase_07 AC 47 ms
63,004 KB
testcase_08 AC 47 ms
62,660 KB
testcase_09 AC 49 ms
63,292 KB
testcase_10 AC 48 ms
62,584 KB
testcase_11 AC 46 ms
62,928 KB
testcase_12 AC 47 ms
62,384 KB
testcase_13 AC 51 ms
65,300 KB
testcase_14 AC 89 ms
85,536 KB
testcase_15 AC 115 ms
92,332 KB
testcase_16 AC 108 ms
90,608 KB
testcase_17 AC 83 ms
84,060 KB
testcase_18 AC 96 ms
86,896 KB
testcase_19 AC 70 ms
78,600 KB
testcase_20 AC 119 ms
95,148 KB
testcase_21 AC 80 ms
83,296 KB
testcase_22 AC 93 ms
86,508 KB
testcase_23 AC 59 ms
71,872 KB
testcase_24 AC 135 ms
97,728 KB
testcase_25 AC 128 ms
96,936 KB
testcase_26 AC 60 ms
72,292 KB
testcase_27 AC 76 ms
82,612 KB
testcase_28 AC 59 ms
72,472 KB
testcase_29 AC 119 ms
95,588 KB
testcase_30 AC 76 ms
80,268 KB
testcase_31 AC 99 ms
88,856 KB
testcase_32 AC 86 ms
85,640 KB
testcase_33 AC 119 ms
92,392 KB
testcase_34 AC 162 ms
101,756 KB
testcase_35 AC 168 ms
100,768 KB
testcase_36 AC 57 ms
66,496 KB
testcase_37 AC 57 ms
67,636 KB
testcase_38 AC 178 ms
104,372 KB
testcase_39 AC 92 ms
81,096 KB
testcase_40 AC 187 ms
102,896 KB
testcase_41 AC 80 ms
76,052 KB
testcase_42 AC 119 ms
90,488 KB
testcase_43 AC 90 ms
82,460 KB
testcase_44 AC 126 ms
92,596 KB
testcase_45 AC 121 ms
90,308 KB
testcase_46 AC 82 ms
77,340 KB
testcase_47 AC 114 ms
89,728 KB
testcase_48 AC 129 ms
93,412 KB
testcase_49 AC 171 ms
100,592 KB
testcase_50 AC 146 ms
98,292 KB
testcase_51 AC 132 ms
94,540 KB
testcase_52 AC 65 ms
70,852 KB
testcase_53 AC 74 ms
74,328 KB
testcase_54 AC 150 ms
101,092 KB
testcase_55 AC 81 ms
77,172 KB
testcase_56 AC 194 ms
108,892 KB
testcase_57 AC 160 ms
97,636 KB
testcase_58 AC 232 ms
112,732 KB
testcase_59 AC 221 ms
113,572 KB
testcase_60 AC 204 ms
113,372 KB
testcase_61 AC 113 ms
95,408 KB
testcase_62 AC 97 ms
92,996 KB
testcase_63 AC 38 ms
53,376 KB
testcase_64 AC 37 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def doubling(max_size, n):
    log_size = max_size.bit_length()
    double = [[-1] * n for i in range(log_size)]

    # ダブリングで2^0回(= 1回)たどって到達する値を求める
    for i in range(n):
        double[0][i] = p[i]
    
    # ダブリングで2^k回たどって到達する値を求める
    for k in range(1, log_size):
        for i in range(n):
            double[k][i] = double[k - 1][(double[k - 1][i] + i) % n] + double[k - 1][i]
    return double

  
n, k = map(int, input().split())
p = list(map(int, input().split()))

double = doubling(k + 10, n)
for i in range(n):
    ans = i
    for kk in range((k + 10).bit_length()):
        if (k >> kk) & 1:
            ans += double[kk][ans % n]
    print(ans + 1)
0