結果
問題 | No.1331 Moving Penguin |
ユーザー | persimmon-persimmon |
提出日時 | 2021-02-14 09:16:08 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 790 bytes |
コンパイル時間 | 307 ms |
コンパイル使用メモリ | 82,160 KB |
実行使用メモリ | 96,744 KB |
最終ジャッジ日時 | 2024-07-21 14:51:04 |
合計ジャッジ時間 | 4,472 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 101 ms
82,176 KB |
testcase_01 | AC | 41 ms
52,352 KB |
testcase_02 | AC | 38 ms
52,352 KB |
testcase_03 | AC | 38 ms
52,480 KB |
testcase_04 | AC | 497 ms
90,724 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
def main1(n,a): dp=[0]*n mod=10**9+7 dp[0]=1 d={} base=0 c=int(n**0.5)+1 for i in range(n): # マスiに到達するケースを加算 for j in range(2,min(i,c)): if (j,i%j) in d: dp[i]+=d[(j,i%j)] dp[i]%=mod dp[i]+=base dp[i]%=mod if i==n-1:break k=a[i] if k==1: base+=dp[i] base%=mod elif k<c: dp[i+1]+=dp[i] dp[i+1]%=mod if (k,i%k) in d: d[(k,i%k)]+=dp[i] d[(k,i%k)]%=mod else: d[(k,i%k)]=dp[i] else: dp[i+1]+=dp[i] dp[i+1]%=mod ii=i+k while ii<n: dp[ii]+=dp[i] dp[ii]%=mod ii+=k return dp[-1] if __name__=='__main__': n=int(input()) a=list(map(int,input().split())) ret1=main1(n,a) print(ret1)