結果

問題 No.554 recurrence formula
ユーザー mlihua09mlihua09
提出日時 2020-09-15 02:11:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 60,076 KB
最終ジャッジ日時 2024-06-22 01:28:22
合計ジャッジ時間 1,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,544 KB
testcase_01 AC 37 ms
52,216 KB
testcase_02 AC 39 ms
53,052 KB
testcase_03 AC 38 ms
52,344 KB
testcase_04 AC 37 ms
52,444 KB
testcase_05 AC 37 ms
52,488 KB
testcase_06 AC 37 ms
53,012 KB
testcase_07 AC 36 ms
53,544 KB
testcase_08 AC 37 ms
52,556 KB
testcase_09 AC 37 ms
52,064 KB
testcase_10 AC 38 ms
52,072 KB
testcase_11 AC 41 ms
58,932 KB
testcase_12 AC 40 ms
58,264 KB
testcase_13 AC 40 ms
59,320 KB
testcase_14 AC 40 ms
58,904 KB
testcase_15 AC 42 ms
58,252 KB
testcase_16 AC 42 ms
58,352 KB
testcase_17 AC 42 ms
59,048 KB
testcase_18 AC 42 ms
58,820 KB
testcase_19 AC 46 ms
60,076 KB
testcase_20 AC 44 ms
59,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

mod = 10 ** 9 + 7

x = 1
y = 0
if n == 1:
    print(1)
    exit()
for i in range(2, n - 1, 2):
    y += i * x
    x += (i + 1) * y
    x %= mod
    y %= mod

if n % 2:
    y += (n - 1) * x
    print(n * y % mod)

else:
    print(n * x % mod)
0