結果

問題 No.1097 Remainder Operation
ユーザー titiatitia
提出日時 2020-06-26 22:53:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 628 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,244 KB
最終ジャッジ日時 2024-07-04 23:04:43
合計ジャッジ時間 10,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 94 ms
11,904 KB
testcase_08 AC 96 ms
11,776 KB
testcase_09 AC 94 ms
11,776 KB
testcase_10 AC 97 ms
11,776 KB
testcase_11 AC 95 ms
11,904 KB
testcase_12 AC 717 ms
20,712 KB
testcase_13 AC 739 ms
20,836 KB
testcase_14 AC 737 ms
20,836 KB
testcase_15 AC 734 ms
20,740 KB
testcase_16 AC 729 ms
20,772 KB
testcase_17 WA -
testcase_18 AC 816 ms
27,244 KB
testcase_19 AC 776 ms
21,872 KB
testcase_20 AC 741 ms
21,740 KB
testcase_21 AC 795 ms
23,792 KB
testcase_22 AC 796 ms
23,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

E=[(A[i]+i)%N for i in range(N)]

NOW=0
USED=[0]*N
ANS=[]
while USED[NOW]==0:
    USED[NOW]=1
    ANS.append(NOW)
    NOW=E[NOW]

USED=[0]*N
NOW=ANS[-1]
ANS.pop()
LOOP=0
Begin=len(ANS)-1

while USED[NOW]==0:
    USED[NOW]=1
    LOOP+=1
    ANS.append(NOW)
    NOW=E[NOW]
    
SUM=[0]
for a in ANS:
    SUM.append(SUM[-1]+A[a])

LSUM=SUM[Begin+LOOP]-SUM[Begin]

Q=int(input())
for tests in range(Q):
    K=int(input())

    if K<len(ANS):
        print(SUM[K])
    else:
        rest=K-(len(ANS)-1)

        LL=(rest+LOOP-1)//LOOP
        print(SUM[K-LL*LOOP]+LL*LSUM)

    
    
0