結果

問題 No.1097 Remainder Operation
ユーザー marroncastlemarroncastle
提出日時 2020-06-26 22:14:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,020 KB
最終ジャッジ日時 2024-07-04 21:48:36
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  ans = 0
  N = int(input())
  A = list(map(int, input().split()))
  lis = [0]
  visited = [-1]*N
  r = 0
  cnt = 0
  while visited[r]==-1:
    visited[r] = cnt
    lis.append(lis[-1]+A[r])
    r = (r+A[r])%N
    cnt += 1
  cycle = cnt - visited[r]
  add_per_cycle = lis[-1]-lis[-cycle-1]
  first = visited[r]
  Q = int(input())
  ans = []
  for i in range(Q):
    k = int(input())
    if k<=first:
      ans.append(lis[k])
    else:
      ans.append(lis[first+(k-first)%cycle]+(k-first)//cycle*add_per_cycle)
  return ans
print(*solve(), sep='\n')
0