結果
問題 | No.1097 Remainder Operation |
ユーザー | U S |
提出日時 | 2020-06-26 23:19:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 736 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 203,400 KB |
最終ジャッジ日時 | 2024-07-05 00:00:36 |
合計ジャッジ時間 | 9,023 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
57,856 KB |
testcase_01 | AC | 37 ms
52,480 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
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 | 305 ms
90,112 KB |
testcase_18 | AC | 316 ms
115,840 KB |
testcase_19 | AC | 337 ms
114,984 KB |
testcase_20 | AC | 337 ms
115,288 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
ソースコード
n = int(input()) a = list(map(int,input().split())) q = int(input()) used = set() x = 0 ans = [] x_ans = [0] while True: tar = x % n x += a[tar] if tar not in used: used.add(tar) ans.append(tar) x_ans.append(x) else: t = tar break ind_t = ans.index(t) dif = x_ans[-1] - x_ans[ind_t] if ind_t == len(ans)-1: dif_array = [0] else: dif_array = x_ans[ind_t+1:] for i in range(len(dif_array)): dif_array[i] -= x_ans[ind_t] st = x_ans[ind_t] for i in range(q): k = int(input()) if k <= n: print(x_ans[k]) else: k -= ind_t loop = k//len(dif_array) mod = k % len(dif_array) print(st + loop*dif + sum(dif_array[:mod]))