結果

問題 No.1097 Remainder Operation
ユーザー kohei2019kohei2019
提出日時 2022-07-22 00:12:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 98,724 KB
最終ジャッジ日時 2024-07-03 10:03:49
合計ジャッジ時間 5,896 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 47 ms
52,096 KB
testcase_02 AC 52 ms
52,608 KB
testcase_03 AC 49 ms
52,992 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 43 ms
52,480 KB
testcase_07 AC 92 ms
76,672 KB
testcase_08 AC 93 ms
76,544 KB
testcase_09 AC 93 ms
76,792 KB
testcase_10 AC 92 ms
76,928 KB
testcase_11 AC 92 ms
76,416 KB
testcase_12 AC 142 ms
90,112 KB
testcase_13 AC 141 ms
90,112 KB
testcase_14 AC 144 ms
90,204 KB
testcase_15 AC 144 ms
89,984 KB
testcase_16 AC 143 ms
90,240 KB
testcase_17 AC 143 ms
90,368 KB
testcase_18 AC 153 ms
98,612 KB
testcase_19 AC 155 ms
98,724 KB
testcase_20 AC 153 ms
98,488 KB
testcase_21 AC 161 ms
98,480 KB
testcase_22 AC 158 ms
98,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsA = list(map(int,input().split()))
Q = int(input())
lsQ = [int(input()) for i in range(Q)]

r = 0
x = 0
used = set()
ll = [0]
while not(r in used):
    used.add(r)
    x += lsA[r]
    ll.append(x)
    r = (x)%N

st = 0
for i in range(len(ll)):
    if ll[i] % N == r:
        st = i
        break

rooppoint = ll[-1]-ll[st]
rooplen = len(ll)-1-st

for i in range(Q):
    q = lsQ[i]
    if q <= st:
        print(ll[q])
        continue
    else:
        p = q-st
        roopn = p//rooplen
        roopadd = p%rooplen
        print(ll[st]+roopn*rooppoint+(ll[st+roopadd]-ll[st]))
    
0