結果

問題 No.1097 Remainder Operation
ユーザー neterukunneterukun
提出日時 2020-06-26 22:32:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 837 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 108,204 KB
最終ジャッジ日時 2024-07-04 22:16:35
合計ジャッジ時間 4,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,416 KB
testcase_01 AC 41 ms
52,956 KB
testcase_02 AC 38 ms
54,136 KB
testcase_03 AC 38 ms
53,432 KB
testcase_04 AC 38 ms
52,552 KB
testcase_05 AC 37 ms
52,756 KB
testcase_06 AC 37 ms
53,132 KB
testcase_07 AC 78 ms
76,468 KB
testcase_08 AC 78 ms
76,444 KB
testcase_09 AC 78 ms
76,448 KB
testcase_10 AC 76 ms
76,596 KB
testcase_11 AC 78 ms
76,644 KB
testcase_12 AC 139 ms
90,132 KB
testcase_13 AC 139 ms
89,916 KB
testcase_14 AC 141 ms
89,952 KB
testcase_15 AC 142 ms
89,900 KB
testcase_16 AC 141 ms
90,320 KB
testcase_17 AC 142 ms
90,268 KB
testcase_18 AC 165 ms
107,184 KB
testcase_19 AC 164 ms
108,204 KB
testcase_20 AC 165 ms
107,956 KB
testcase_21 AC 168 ms
107,664 KB
testcase_22 AC 168 ms
107,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
q = int(input())
k = [int(input()) for i in range(q)]

ans = [0]
ind = [-1]
memo = {}
for i in range(3 * n):
    tmp = ans[-1]
    r = tmp % n
    if r in memo:
        lap_length = len(ans) - memo[r]
        lap_diff = ans[-1] - ans[memo[r] - 1]
        init_length = len(ans) - lap_length - 1
        break
    memo[r] = len(ans)
    ans.append(tmp + a[r])
    ind.append(r)

ru = [0] * (lap_length + 1)
for i in range(lap_length):
    ru[i + 1] = ru[i] + ans[memo[r] + i] - ans[memo[r] - 1 + i]
  
#print(ans)
#print(ind)
#print(init_length, lap_length, lap_diff)
#print(ru)
for num in k:
    if num < len(ans):
        print(ans[num])
    else:
        res = ans[init_length]
        laps, rem = divmod(num - init_length, lap_length)
        print(res + laps * lap_diff + ru[rem])
0