結果
問題 | No.1097 Remainder Operation |
ユーザー |
![]() |
提出日時 | 2022-03-12 15:50:10 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,004 bytes |
コンパイル時間 | 327 ms |
コンパイル使用メモリ | 82,216 KB |
実行使用メモリ | 121,148 KB |
最終ジャッジ日時 | 2024-09-16 23:05:27 |
合計ジャッジ時間 | 5,192 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 5 TLE * 1 -- * 15 |
ソースコード
import itertools as iter import collections as coll import heapq as hq import bisect as bis from decimal import Decimal as dec from functools import cmp_to_key import math import sys #import pypyjit #pypyjit.set_param('max_unroll_recursion=-1') sys.setrecursionlimit(10 ** 6) inp = sys.stdin.readline input = lambda : inp().rstrip() getN = lambda : int(inp()) getNs = lambda : map(int, inp().split()) getList = lambda :list(map(int, inp().split())) getStrs = lambda n : [input() for _ in [0] * n] def yexit(): print("Yes"); exit(0) def nexit(): print("No"); exit(0) pi = 3.141592653589793 mod = 10 ** 9 + 7 MOD = 998244353 INF = 10 ** 18 dx = [1, 0, -1, 0]; dy = [0, 1, 0, -1] """ Main Code """ n = getN() a = getList() q = getN() query = [getN() for _ in [0] * q] def calc(db, now): next = [0] * n for i in range(n): next[i] = now[i] + db[(i + now[i]) % n] return next for t in query: db = a[:] ans = 0 while(t): if(t & 1): ans += db[ans % n] db = calc(db, db) t >>= 1 print(ans)