結果

問題 No.1097 Remainder Operation
ユーザー takakintakakin
提出日時 2020-06-27 17:09:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 404 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,544 KB
最終ジャッジ日時 2024-07-05 17:55:08
合計ジャッジ時間 6,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 24 ms
10,496 KB
testcase_06 AC 24 ms
10,496 KB
testcase_07 AC 50 ms
11,648 KB
testcase_08 AC 50 ms
11,648 KB
testcase_09 AC 49 ms
11,776 KB
testcase_10 AC 50 ms
11,648 KB
testcase_11 AC 51 ms
11,648 KB
testcase_12 AC 296 ms
20,560 KB
testcase_13 AC 294 ms
20,692 KB
testcase_14 AC 301 ms
20,692 KB
testcase_15 AC 301 ms
20,692 KB
testcase_16 AC 297 ms
20,692 KB
testcase_17 AC 288 ms
20,792 KB
testcase_18 AC 375 ms
29,348 KB
testcase_19 AC 382 ms
29,308 KB
testcase_20 AC 381 ms
29,324 KB
testcase_21 AC 399 ms
29,196 KB
testcase_22 AC 404 ms
29,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
x=0
C=[False]*n
C[0]=True
import collections
D=collections.defaultdict(int)
Ans=[]
ct=1
while True:
  Ans.append(x)
  if D[x%n]!=0:
    st=D[x%n]
    ed=ct
    Ans.append(x+A[x%n])
    break
  else:
    D[x%n]=ct
    ct+=1
    x+=A[x%n]
q=int(input())
for _ in range(q):
  k=int(input())
  if k<=ed:
    print(Ans[k])
  else:
    ans=Ans[st]
    loop=(k-st)//(ed-st)
    ans+=loop*(Ans[ed]-Ans[st])
    rem=(k-st)%(ed-st)
    ans+=Ans[st+rem]-Ans[st]
    print(ans)
0