結果

問題 No.1097 Remainder Operation
ユーザー prussian_coderprussian_coder
提出日時 2022-04-07 22:51:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-11-28 02:14:38
合計ジャッジ時間 6,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,200 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 110 ms
75,648 KB
testcase_08 AC 107 ms
76,288 KB
testcase_09 AC 113 ms
76,288 KB
testcase_10 AC 111 ms
76,288 KB
testcase_11 AC 108 ms
75,776 KB
testcase_12 AC 296 ms
84,864 KB
testcase_13 AC 307 ms
84,736 KB
testcase_14 AC 296 ms
84,480 KB
testcase_15 AC 287 ms
84,736 KB
testcase_16 AC 296 ms
83,840 KB
testcase_17 AC 279 ms
84,736 KB
testcase_18 AC 301 ms
105,472 KB
testcase_19 AC 309 ms
105,472 KB
testcase_20 AC 314 ms
105,472 KB
testcase_21 AC 300 ms
105,856 KB
testcase_22 AC 309 ms
105,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(x) for x in input().split()]
D=dict()
a=0
t=0
D[0]=(0,0)
p=0
ans = []
while True:
  p+=1
  a+=A[a%N]
  ans.append(a)
  if not a%N in D:
    D[a%N]=(a,p)
  else:
    break
    
cycle = p - D[a%N][1]
score = a - D[a%N][0]

    
def res(K):   
	if p>K-1:    
	  print(ans[K-1])
	else:
	  b = a + ((K-p)//cycle)*score
	  q = p + ((K-p)//cycle)*cycle
	  if K>q:
	    b += ans[K-q+D[a%N][1]-1] - D[a%N][0]
	  print(b)  
for _ in range(int(input())):
	res(int(input()))  
0