結果

問題 No.554 recurrence formula
ユーザー yamanchu3776yamanchu3776
提出日時 2017-08-23 12:34:48
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 15,408 KB
最終ジャッジ日時 2024-10-15 13:02:10
合計ジャッジ時間 4,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 12 ms
6,016 KB
testcase_02 AC 11 ms
6,016 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 11 ms
6,016 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 11 ms
6,016 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 11 ms
6,144 KB
testcase_09 AC 11 ms
6,016 KB
testcase_10 AC 13 ms
6,272 KB
testcase_11 AC 21 ms
6,400 KB
testcase_12 AC 18 ms
6,400 KB
testcase_13 AC 40 ms
6,400 KB
testcase_14 AC 22 ms
6,144 KB
testcase_15 AC 46 ms
6,656 KB
testcase_16 AC 54 ms
6,528 KB
testcase_17 AC 32 ms
6,528 KB
testcase_18 AC 28 ms
6,528 KB
testcase_19 TLE -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

num = int(raw_input())
s1 = 0
s2 = 1
for i in range(num-1):
	i = i+2
	ss = i*s2 + s1
	s1 = s2
	s2 = ss

an = num * s1
print an%1000000007
0