結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
nohakai3
|
| 提出日時 | 2022-10-17 20:21:04 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 181 bytes |
| コンパイル時間 | 198 ms |
| コンパイル使用メモリ | 82,132 KB |
| 実行使用メモリ | 65,400 KB |
| 最終ジャッジ日時 | 2024-06-28 10:01:32 |
| 合計ジャッジ時間 | 2,019 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 RE * 1 |
| other | AC * 15 RE * 2 |
ソースコード
n=int(input())
dp=[0]*(n+1)
dp[1]=1
dp[2]=2
dp[3]=2
dp[4]=3
if n<=4:
print(dp[n])
exit()
for i in range(5,n+1):
dp[i]=(dp[i-2]+dp[i-3])%(10**9+7)
print(dp[n]%(10**9+7))
nohakai3