結果
問題 | No.554 recurrence formula |
ユーザー | momotaros300 |
提出日時 | 2019-09-03 10:09:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 166 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 82,172 KB |
実行使用メモリ | 85,244 KB |
最終ジャッジ日時 | 2024-06-06 00:57:14 |
合計ジャッジ時間 | 6,286 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 36 ms
51,704 KB |
testcase_02 | AC | 37 ms
51,672 KB |
testcase_03 | AC | 36 ms
52,436 KB |
testcase_04 | AC | 35 ms
52,620 KB |
testcase_05 | AC | 36 ms
52,884 KB |
testcase_06 | AC | 35 ms
52,088 KB |
testcase_07 | AC | 36 ms
51,700 KB |
testcase_08 | AC | 35 ms
52,596 KB |
testcase_09 | AC | 35 ms
53,164 KB |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | TLE | - |
testcase_20 | -- | - |
ソースコード
n=int(input()) mod=10**9+7 even,odd=0,1 for i in range(2,n): if i%2==0: even+=odd*i even%mod else: odd+=even*i odd%mod print(even*n if n%2 else odd*n)