結果
問題 | No.1097 Remainder Operation |
ユーザー | Theta |
提出日時 | 2024-03-29 13:23:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 329 ms / 2,000 ms |
コード長 | 971 bytes |
コンパイル時間 | 1,115 ms |
コンパイル使用メモリ | 82,220 KB |
実行使用メモリ | 114,276 KB |
最終ジャッジ日時 | 2024-09-30 15:02:28 |
合計ジャッジ時間 | 7,772 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
53,836 KB |
testcase_01 | AC | 34 ms
52,088 KB |
testcase_02 | AC | 35 ms
53,560 KB |
testcase_03 | AC | 34 ms
53,012 KB |
testcase_04 | AC | 36 ms
52,892 KB |
testcase_05 | AC | 36 ms
53,148 KB |
testcase_06 | AC | 35 ms
53,072 KB |
testcase_07 | AC | 89 ms
76,468 KB |
testcase_08 | AC | 88 ms
76,332 KB |
testcase_09 | AC | 90 ms
76,268 KB |
testcase_10 | AC | 92 ms
76,268 KB |
testcase_11 | AC | 92 ms
76,272 KB |
testcase_12 | AC | 276 ms
89,896 KB |
testcase_13 | AC | 277 ms
89,920 KB |
testcase_14 | AC | 274 ms
90,036 KB |
testcase_15 | AC | 273 ms
89,860 KB |
testcase_16 | AC | 279 ms
89,964 KB |
testcase_17 | AC | 271 ms
90,096 KB |
testcase_18 | AC | 328 ms
114,276 KB |
testcase_19 | AC | 329 ms
114,148 KB |
testcase_20 | AC | 321 ms
113,876 KB |
testcase_21 | AC | 312 ms
113,888 KB |
testcase_22 | AC | 324 ms
114,136 KB |
ソースコード
import sys def printe(*args, end="\n", **kwargs): print(*args, end=end, file=sys.stderr, **kwargs) def main(): N = int(input()) A = list(map(int, input().split())) history_x = [] history_mod = {} c_x = 0 c_n = 0 while (c_x % N) not in history_mod: history_x.append(c_x) history_mod[c_x % N] = c_n c_x += A[c_x % N] c_n += 1 printe(history_mod) printe(history_x) loop_interval = c_n - history_mod[c_x % N] init = history_mod[c_x % N] printe(loop_interval, init, c_x) increase = c_x - history_x[init] for _ in range(int(input())): K = int(input()) if K < init: print(history_x[K]) continue loop_n = (K - init) // loop_interval loop_rest = (K - init) % loop_interval print(history_x[init] + increase * loop_n + history_x[init + loop_rest] - history_x[init]) if __name__ == "__main__": main()