結果

問題 No.1097 Remainder Operation
ユーザー H20H20
提出日時 2021-10-14 08:56:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 158,416 KB
最終ジャッジ日時 2024-09-17 16:27:36
合計ジャッジ時間 10,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,804 KB
testcase_01 AC 34 ms
54,108 KB
testcase_02 AC 42 ms
61,832 KB
testcase_03 AC 49 ms
61,436 KB
testcase_04 AC 45 ms
61,620 KB
testcase_05 AC 43 ms
60,552 KB
testcase_06 AC 42 ms
61,732 KB
testcase_07 AC 104 ms
83,496 KB
testcase_08 AC 105 ms
83,868 KB
testcase_09 AC 106 ms
83,632 KB
testcase_10 AC 107 ms
83,940 KB
testcase_11 AC 108 ms
83,360 KB
testcase_12 AC 563 ms
157,868 KB
testcase_13 AC 612 ms
157,920 KB
testcase_14 AC 562 ms
158,140 KB
testcase_15 AC 618 ms
157,808 KB
testcase_16 AC 566 ms
158,032 KB
testcase_17 AC 453 ms
158,416 KB
testcase_18 AC 424 ms
157,368 KB
testcase_19 AC 519 ms
157,016 KB
testcase_20 AC 559 ms
156,672 KB
testcase_21 AC 717 ms
156,788 KB
testcase_22 AC 716 ms
156,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
A = list(map(int,input().split()))
Q = int(input())

# 二次元配列作成
nex = []
nsum = []

for _ in range(int(math.log2(10**13))):
    l1 = [0] * N
    l2 = [0] * N
    nex.append(l1)
    nsum.append(l2)

# dv[0][0:X]を初期化
for n in range(N):
    nex[0][n] = (n+A[n])%N
    nsum[0][n] = A[n]

# ダブリングで表を構築
for k in range(1, int(math.log2(10**13))):
    for n in range(N):
        nex[k][n] = nex[k - 1][nex[k - 1][n]]
        nsum[k][n] = nsum[k - 1][n] + nsum[k - 1][nex[k - 1][n]]

for _ in range(Q):
    K = int(input())
    a = []
    for i in range(int(math.log2(K)) + 1):
        if K>>i & 1:
            a.append(i)

    ans = 0
    X = 0
    for i in a:
        ans += nsum[i][X]
        X = nex[i][X]
    print(ans)
0