結果

問題 No.1097 Remainder Operation
ユーザー ntudantuda
提出日時 2024-12-11 00:11:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-12-11 00:11:40
合計ジャッジ時間 7,216 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 40 ms
52,864 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 49 ms
52,736 KB
testcase_07 AC 103 ms
76,288 KB
testcase_08 AC 102 ms
76,288 KB
testcase_09 AC 105 ms
76,460 KB
testcase_10 AC 101 ms
76,544 KB
testcase_11 AC 104 ms
76,416 KB
testcase_12 AC 316 ms
91,084 KB
testcase_13 AC 347 ms
90,756 KB
testcase_14 AC 314 ms
90,496 KB
testcase_15 AC 314 ms
90,496 KB
testcase_16 AC 316 ms
90,880 KB
testcase_17 AC 347 ms
90,912 KB
testcase_18 AC 318 ms
101,760 KB
testcase_19 AC 328 ms
101,588 KB
testcase_20 AC 353 ms
101,736 KB
testcase_21 AC 324 ms
101,888 KB
testcase_22 AC 340 ms
101,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
Y = []
C = [0]
B = [-1] * N
x = 0
i = 0
r = 0
while B[r] == -1:
    B[r] = i
    Y.append(r)
    x += A[r]
    C.append(x)
    r = x % N
    i += 1
start = B[r]
loop = i - B[r]
if start == 0:
    loopsum = C[i]
else:
    loopsum = C[i] - C[B[r]]

for _ in range(int(input())):
    k = int(input())
    if k <= i:
        print(C[k])
    else:
        print(C[(k - start) % loop + start] + (k - start) // loop * loopsum)
0