結果

問題 No.1331 Moving Penguin
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-03 13:01:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 737 ms / 1,500 ms
コード長 462 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,672 KB
最終ジャッジ日時 2024-11-17 02:54:56
合計ジャッジ時間 30,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
66,432 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 692 ms
90,244 KB
testcase_05 AC 699 ms
88,448 KB
testcase_06 AC 693 ms
88,576 KB
testcase_07 AC 697 ms
88,704 KB
testcase_08 AC 693 ms
87,808 KB
testcase_09 AC 691 ms
87,424 KB
testcase_10 AC 699 ms
87,880 KB
testcase_11 AC 694 ms
88,320 KB
testcase_12 AC 690 ms
87,680 KB
testcase_13 AC 693 ms
87,936 KB
testcase_14 AC 694 ms
87,936 KB
testcase_15 AC 691 ms
87,808 KB
testcase_16 AC 688 ms
87,936 KB
testcase_17 AC 686 ms
86,656 KB
testcase_18 AC 684 ms
86,784 KB
testcase_19 AC 687 ms
86,528 KB
testcase_20 AC 685 ms
86,400 KB
testcase_21 AC 684 ms
86,656 KB
testcase_22 AC 686 ms
86,784 KB
testcase_23 AC 690 ms
87,808 KB
testcase_24 AC 687 ms
87,936 KB
testcase_25 AC 688 ms
88,064 KB
testcase_26 AC 709 ms
92,032 KB
testcase_27 AC 710 ms
92,288 KB
testcase_28 AC 713 ms
92,672 KB
testcase_29 AC 690 ms
89,600 KB
testcase_30 AC 181 ms
73,984 KB
testcase_31 AC 338 ms
82,440 KB
testcase_32 AC 161 ms
73,216 KB
testcase_33 AC 249 ms
77,696 KB
testcase_34 AC 417 ms
86,656 KB
testcase_35 AC 734 ms
91,848 KB
testcase_36 AC 737 ms
92,020 KB
testcase_37 AC 733 ms
92,160 KB
testcase_38 AC 193 ms
75,264 KB
testcase_39 AC 679 ms
92,216 KB
testcase_40 AC 288 ms
80,000 KB
testcase_41 AC 686 ms
87,424 KB
testcase_42 AC 725 ms
91,520 KB
testcase_43 AC 725 ms
91,776 KB
testcase_44 AC 729 ms
91,648 KB
testcase_45 AC 731 ms
91,904 KB
testcase_46 AC 730 ms
91,776 KB
testcase_47 AC 726 ms
92,032 KB
testcase_48 AC 684 ms
86,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


mod=10**9+7
n=int(input())
a=[0]+list(map(int,input().split()))
dp=[0]*(n+3)
dp[1]=1
B=int(n**0.5)+3
sdp=[[0]*(B+3) for i in range(B+3)]
for i in range(1,n+1):
    dp[i]+=dp[i-1]
    for j in range(1,B+1):
        dp[i]+=sdp[j][i%j]
    dp[i]%=mod
    if a[i-1]==1:dp[i]-=dp[i-1]
    dp[i]%=mod
    if a[i]<=B:
        sdp[a[i]][i%a[i]]+=dp[i]
        sdp[a[i]][i%a[i]]%=mod
    else:
        for j in range(i+a[i],n+1,a[i]):dp[j]+=dp[i]
print(dp[n]%mod)





0