結果

問題 No.554 recurrence formula
ユーザー momotaros300momotaros300
提出日時 2019-09-03 10:09:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 85,940 KB
最終ジャッジ日時 2024-06-06 00:57:59
合計ジャッジ時間 6,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
52,472 KB
testcase_02 AC 33 ms
52,028 KB
testcase_03 AC 33 ms
53,364 KB
testcase_04 AC 33 ms
53,076 KB
testcase_05 AC 35 ms
52,188 KB
testcase_06 AC 33 ms
52,360 KB
testcase_07 AC 33 ms
52,208 KB
testcase_08 AC 32 ms
52,072 KB
testcase_09 AC 36 ms
52,424 KB
testcase_10 AC 44 ms
61,052 KB
testcase_11 AC 104 ms
75,116 KB
testcase_12 AC 87 ms
74,892 KB
testcase_13 AC 250 ms
75,076 KB
testcase_14 AC 106 ms
75,220 KB
testcase_15 AC 298 ms
74,736 KB
testcase_16 AC 359 ms
75,048 KB
testcase_17 AC 187 ms
75,192 KB
testcase_18 AC 157 ms
75,220 KB
testcase_19 TLE -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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%mod if n%2 else odd*n%mod)





0