結果

問題 No.1097 Remainder Operation
ユーザー wattaiheiwattaihei
提出日時 2020-06-26 22:53:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-07-04 23:05:29
合計ジャッジ時間 3,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 38 ms
51,944 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 62 ms
71,168 KB
testcase_08 AC 56 ms
71,040 KB
testcase_09 AC 56 ms
71,168 KB
testcase_10 AC 55 ms
70,912 KB
testcase_11 AC 55 ms
71,040 KB
testcase_12 AC 111 ms
88,704 KB
testcase_13 AC 113 ms
88,960 KB
testcase_14 AC 112 ms
88,576 KB
testcase_15 AC 113 ms
88,632 KB
testcase_16 AC 113 ms
89,088 KB
testcase_17 AC 106 ms
89,216 KB
testcase_18 AC 110 ms
87,552 KB
testcase_19 AC 112 ms
87,424 KB
testcase_20 AC 112 ms
88,012 KB
testcase_21 AC 114 ms
87,936 KB
testcase_22 AC 114 ms
87,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A = list(map(int, input().split()))
Q = int(input())
Query = [int(input()) for _ in range(Q)]


D = [-1]*N

P = []
x = 0
j = 0
while D[x%N] == -1:
    D[x%N] = j
    P.append(x)
    x = (x + A[x%N])
    j += 1

cycle = j - D[x%N]
init = D[x%N]
cyclesum = x - P[D[x%N]]

for K in Query:
    if K < init:
        ans = P[K]
    else:
        ans = P[(K-init)%cycle+init] + ((K-init)//cycle)*cyclesum
    print(ans)
0