結果

問題 No.1097 Remainder Operation
ユーザー brthyyjpbrthyyjp
提出日時 2020-09-25 03:47:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-06-28 05:41:52
合計ジャッジ時間 4,817 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 58 ms
69,120 KB
testcase_08 AC 59 ms
69,248 KB
testcase_09 AC 59 ms
68,608 KB
testcase_10 AC 58 ms
68,992 KB
testcase_11 AC 58 ms
68,736 KB
testcase_12 AC 108 ms
89,600 KB
testcase_13 AC 105 ms
89,728 KB
testcase_14 AC 108 ms
89,600 KB
testcase_15 AC 112 ms
89,728 KB
testcase_16 AC 110 ms
89,600 KB
testcase_17 AC 107 ms
89,472 KB
testcase_18 AC 122 ms
105,856 KB
testcase_19 AC 129 ms
107,904 KB
testcase_20 AC 127 ms
107,776 KB
testcase_21 AC 128 ms
106,880 KB
testcase_22 AC 134 ms
106,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = sys.stdin.buffer.readline
#input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n = int(input())
A = list(map(int, input().split()))
X = [0]*(n+2)
used = {}
x = 0
X[0] = x
for i in range(n+1):
    r = x%n
    x += A[r]
    X[i+1] = x
    if r in used:
        c = i-used[r]
        t = used[r]
        break
    else:
        used[r] = i

cum = X[t:t+c+1]
s = cum[-1]-cum[0]

Q = int(input())
for i in range(Q):
    k = int(input())
    if k < t:
        print(X[k])
    else:
        q, r = divmod(k-t, c)
        ans = X[t]+s*q+cum[r]-cum[0]
        print(ans)
0