結果

問題 No.1097 Remainder Operation
ユーザー neterukunneterukun
提出日時 2020-06-26 22:27:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 108,072 KB
最終ジャッジ日時 2024-07-04 22:12:06
合計ジャッジ時間 4,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 147 ms
90,640 KB
testcase_18 AC 172 ms
107,172 KB
testcase_19 AC 170 ms
108,008 KB
testcase_20 AC 172 ms
108,072 KB
testcase_21 AC 174 ms
107,568 KB
testcase_22 AC 174 ms
107,808 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)

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