結果

問題 No.1331 Moving Penguin
ユーザー convexineqconvexineq
提出日時 2021-01-08 23:22:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 94,592 KB
最終ジャッジ日時 2024-11-16 18:14:19
合計ジャッジ時間 43,688 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
67,200 KB
testcase_01 AC 45 ms
58,752 KB
testcase_02 AC 43 ms
58,752 KB
testcase_03 AC 44 ms
58,624 KB
testcase_04 WA -
testcase_05 AC 1,000 ms
89,856 KB
testcase_06 AC 1,003 ms
89,856 KB
testcase_07 AC 1,005 ms
90,368 KB
testcase_08 AC 1,019 ms
92,160 KB
testcase_09 AC 1,003 ms
92,416 KB
testcase_10 AC 988 ms
89,728 KB
testcase_11 AC 984 ms
89,472 KB
testcase_12 AC 999 ms
92,288 KB
testcase_13 AC 1,005 ms
89,728 KB
testcase_14 AC 996 ms
89,600 KB
testcase_15 AC 1,039 ms
89,728 KB
testcase_16 AC 1,009 ms
89,856 KB
testcase_17 AC 968 ms
92,288 KB
testcase_18 AC 1,002 ms
92,288 KB
testcase_19 AC 979 ms
92,416 KB
testcase_20 AC 998 ms
92,544 KB
testcase_21 AC 1,000 ms
92,544 KB
testcase_22 AC 1,025 ms
92,160 KB
testcase_23 AC 974 ms
89,600 KB
testcase_24 AC 985 ms
89,728 KB
testcase_25 AC 985 ms
89,856 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 971 ms
93,696 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 332 ms
74,624 KB
testcase_33 WA -
testcase_34 AC 685 ms
87,424 KB
testcase_35 AC 999 ms
90,112 KB
testcase_36 AC 1,056 ms
90,112 KB
testcase_37 AC 981 ms
90,240 KB
testcase_38 AC 385 ms
76,544 KB
testcase_39 AC 944 ms
93,312 KB
testcase_40 WA -
testcase_41 AC 1,006 ms
93,312 KB
testcase_42 AC 996 ms
93,056 KB
testcase_43 AC 965 ms
89,984 KB
testcase_44 AC 978 ms
90,368 KB
testcase_45 AC 983 ms
90,112 KB
testcase_46 AC 977 ms
90,368 KB
testcase_47 AC 986 ms
90,624 KB
testcase_48 AC 962 ms
88,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
M = 512
MOD = 10**9+7
laz = [[0]*i for i in range(M+1)]
dp = [0]*(n+1)
dp[0] = 1
for i in range(n):
    for j in range(1,M):
        dp[i] += laz[j][i%j]
    dp[i] %= MOD
    ai = a[i]
    if ai > M:
        for k in range(i+ai,n+1,ai):
            dp[k] += dp[i]
    else:
        laz[ai][i%ai] += dp[i]
    if ai != 1:
        dp[i+1] += dp[i]
print(dp[n-1])
0