結果

問題 No.1877 俺自身が線グラフになることだ
ユーザー tassei903tassei903
提出日時 2022-03-19 09:13:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 75,688 KB
最終ジャッジ日時 2024-10-04 01:46:38
合計ジャッジ時間 1,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,460 KB
testcase_01 AC 32 ms
52,944 KB
testcase_02 AC 32 ms
52,240 KB
testcase_03 AC 32 ms
53,960 KB
testcase_04 AC 33 ms
54,000 KB
testcase_05 AC 35 ms
52,596 KB
testcase_06 AC 33 ms
52,340 KB
testcase_07 AC 32 ms
52,800 KB
testcase_08 AC 33 ms
52,620 KB
testcase_09 AC 32 ms
52,944 KB
testcase_10 AC 40 ms
62,600 KB
testcase_11 AC 90 ms
75,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
mod = 10**9+7
dp = [0]*(n+1)
dp[-1] = 1
for i in range(3,n+1):
    ndp = [0]*(n+1)
    ndp, dp = dp, ndp
    for j in range(n+1):
        for k in range(j, -1, -i):
            dp[k] += ndp[j]
            dp[k] %= mod
    #print(dp)
print(dp[0])
0