結果

問題 No.1097 Remainder Operation
ユーザー 👑 rin204rin204
提出日時 2022-04-17 17:33:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 654 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 153,652 KB
最終ジャッジ日時 2024-06-07 23:53:23
合計ジャッジ時間 10,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,548 KB
testcase_01 AC 40 ms
53,484 KB
testcase_02 AC 55 ms
67,684 KB
testcase_03 AC 55 ms
65,972 KB
testcase_04 AC 55 ms
67,004 KB
testcase_05 AC 54 ms
67,412 KB
testcase_06 AC 56 ms
66,564 KB
testcase_07 AC 108 ms
82,728 KB
testcase_08 AC 109 ms
82,920 KB
testcase_09 AC 108 ms
82,884 KB
testcase_10 AC 109 ms
82,936 KB
testcase_11 AC 109 ms
82,904 KB
testcase_12 AC 590 ms
153,348 KB
testcase_13 AC 608 ms
153,380 KB
testcase_14 AC 615 ms
153,248 KB
testcase_15 AC 637 ms
153,584 KB
testcase_16 AC 596 ms
153,200 KB
testcase_17 AC 475 ms
153,652 KB
testcase_18 AC 472 ms
152,304 KB
testcase_19 AC 540 ms
152,248 KB
testcase_20 AC 533 ms
152,372 KB
testcase_21 AC 654 ms
152,380 KB
testcase_22 AC 653 ms
152,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

nex = [[0] * n for _ in range(40)]
tot = [[0] * n for _ in range(40)]

for i, a in enumerate(A):
    nex[0][i] = a % n
    tot[0][i] = a

for i in range(1, 40):
    for j in range(n):
        d = nex[i - 1][j]
        nj = (j + d) % n
        nex[i][j] = (nex[i - 1][j] + nex[i - 1][nj]) % n
        tot[i][j] = tot[i - 1][j] + tot[i - 1][nj]

Q = int(input())
for _ in range(Q):
    k = int(input())
    j = 0
    ans = 0
    for i in range(40):
        if k >> i & 1:
            ans += tot[i][j]
            j += nex[i][j]
            j %= n
    print(ans)

0