結果

問題 No.314 ケンケンパ
ユーザー いたいた
提出日時 2024-12-04 17:43:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 1,000 ms
コード長 254 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 171,700 KB
最終ジャッジ日時 2024-12-04 17:43:20
合計ジャッジ時間 3,050 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
170,756 KB
testcase_01 AC 39 ms
52,284 KB
testcase_02 AC 38 ms
52,204 KB
testcase_03 AC 39 ms
52,484 KB
testcase_04 AC 38 ms
52,032 KB
testcase_05 AC 38 ms
52,068 KB
testcase_06 AC 37 ms
52,068 KB
testcase_07 AC 38 ms
53,056 KB
testcase_08 AC 38 ms
53,128 KB
testcase_09 AC 38 ms
52,732 KB
testcase_10 AC 38 ms
54,152 KB
testcase_11 AC 38 ms
53,072 KB
testcase_12 AC 39 ms
53,444 KB
testcase_13 AC 39 ms
52,548 KB
testcase_14 AC 46 ms
60,384 KB
testcase_15 AC 46 ms
60,768 KB
testcase_16 AC 46 ms
62,212 KB
testcase_17 AC 51 ms
69,144 KB
testcase_18 AC 131 ms
120,868 KB
testcase_19 AC 231 ms
171,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
dp=[[0]*3 for _ in range(N)]


dp[0][0]=1
for i in range(1,N):
  dp[i][0]=dp[i-1][2]
  dp[i][1]=dp[i-1][0]
  dp[i][2]=dp[i-1][0]+dp[i-1][1]
  dp[i][0]%=1000000007
  dp[i][1]%=1000000007
  dp[i][2]%=1000000007
print(sum(dp[N-1])%1000000007)
0