結果
| 問題 | No.314 ケンケンパ |
| コンテスト | |
| ユーザー |
takakin
|
| 提出日時 | 2020-03-30 17:45:48 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 258 bytes |
| コンパイル時間 | 341 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 144,128 KB |
| 最終ジャッジ日時 | 2024-06-22 05:01:13 |
| 合計ジャッジ時間 | 6,856 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 RE * 1 TLE * 2 |
ソースコード
import sys input=lambda: sys.stdin.readline().rstrip() n=int(input()) mod=10**9+7 D=[[0]*3 for _ in range(n)] D[1][0]=1 D[1][1]=1 D[1][2]=0 for i in range(2,n): D[i][0]=D[i-1][2] D[i][1]=(D[i-1][0]+D[i-1][2])%mod D[i][2]=D[i-1][1] print(sum(D[-1])%mod)
takakin