結果

問題 No.314 ケンケンパ
ユーザー TsubasaTsubasa
提出日時 2018-02-02 20:46:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-06-10 01:04:06
合計ジャッジ時間 2,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 409 ms
18,688 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 29 ms
11,008 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 29 ms
10,880 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 33 ms
10,880 KB
testcase_16 AC 39 ms
11,008 KB
testcase_17 AC 69 ms
11,776 KB
testcase_18 AC 213 ms
14,720 KB
testcase_19 AC 419 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import array

def main():
  dp = array.array("Q", [1,2,2])
  mod = 10**9 + 7
  N = int(input())

  for n in range(3, N):
    dp.append((dp[n-3]+dp[n-2]) % mod)

  print(dp[-1])

main()
0