結果

問題 No.554 recurrence formula
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-27 13:22:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 59,432 KB
最終ジャッジ日時 2024-10-27 13:22:44
合計ジャッジ時間 2,393 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,280 KB
testcase_01 AC 37 ms
52,076 KB
testcase_02 AC 37 ms
52,408 KB
testcase_03 AC 36 ms
53,356 KB
testcase_04 AC 37 ms
53,300 KB
testcase_05 AC 36 ms
52,756 KB
testcase_06 AC 35 ms
52,400 KB
testcase_07 AC 35 ms
52,956 KB
testcase_08 AC 35 ms
52,680 KB
testcase_09 AC 36 ms
52,484 KB
testcase_10 AC 41 ms
58,280 KB
testcase_11 AC 39 ms
58,276 KB
testcase_12 AC 39 ms
58,572 KB
testcase_13 AC 40 ms
59,432 KB
testcase_14 AC 40 ms
58,392 KB
testcase_15 AC 40 ms
58,760 KB
testcase_16 AC 40 ms
59,044 KB
testcase_17 AC 40 ms
59,292 KB
testcase_18 AC 41 ms
58,476 KB
testcase_19 AC 41 ms
58,724 KB
testcase_20 AC 43 ms
58,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
M=10**9+7
q=1
c=[0,0]
c[1%2]=q
for i in range(2,n+1):
  q=i*c[(i%2)^1]%M
  c[i%2]+=q
  c[i%2]%=M
print(q)
0