結果

問題 No.1097 Remainder Operation
ユーザー rlangevinrlangevin
提出日時 2023-02-27 22:42:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 888 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 320,104 KB
最終ジャッジ日時 2024-09-15 04:21:16
合計ジャッジ時間 11,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 57 ms
61,568 KB
testcase_03 AC 56 ms
61,952 KB
testcase_04 AC 57 ms
61,696 KB
testcase_05 AC 57 ms
61,696 KB
testcase_06 AC 57 ms
61,824 KB
testcase_07 AC 149 ms
100,224 KB
testcase_08 AC 144 ms
100,480 KB
testcase_09 AC 142 ms
100,864 KB
testcase_10 AC 141 ms
99,968 KB
testcase_11 AC 144 ms
99,968 KB
testcase_12 AC 852 ms
315,824 KB
testcase_13 AC 866 ms
313,684 KB
testcase_14 AC 888 ms
313,912 KB
testcase_15 AC 874 ms
312,400 KB
testcase_16 AC 879 ms
317,240 KB
testcase_17 AC 709 ms
320,104 KB
testcase_18 AC 334 ms
184,064 KB
testcase_19 AC 695 ms
286,456 KB
testcase_20 AC 669 ms
286,468 KB
testcase_21 AC 505 ms
184,320 KB
testcase_22 AC 529 ms
184,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N = int(readline())
A = list(map(int, readline().split()))
Q = int(readline())
dp1 = [[0] * N for i in range(61)]
dp2 = [[0] * N for i in range(61)]
for i in range(N):
    dp1[0][i] = (i + A[i]) % N
    dp2[0][i] = A[i]
    
for n in range(60):
    for i in range(N):
        dp1[n + 1][i] = dp1[n][dp1[n][i]]
        dp2[n + 1][i] = dp2[n][i] + dp2[n][dp1[n][i]]

for _ in range(Q):
    K = int(readline())
    now = 0
    ans = 0
    for i in range(60):
        if (K >> i) & 1:
            ans += dp2[i][now]
            now = dp1[i][now]
    print(ans)
0