結果

問題 No.1277 級数入り級数
ユーザー realDivineJKrealDivineJK
提出日時 2021-04-02 00:51:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 115 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-21 08:38:32
合計ジャッジ時間 59,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 33 ms
10,496 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 1,490 ms
10,624 KB
testcase_10 AC 1,365 ms
10,496 KB
testcase_11 AC 1,514 ms
10,496 KB
testcase_12 AC 1,016 ms
10,624 KB
testcase_13 AC 515 ms
10,496 KB
testcase_14 AC 1,642 ms
10,496 KB
testcase_15 TLE -
testcase_16 AC 1,996 ms
10,624 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 488 ms
10,624 KB
testcase_21 AC 1,384 ms
10,624 KB
testcase_22 AC 1,606 ms
10,624 KB
testcase_23 AC 869 ms
10,496 KB
testcase_24 TLE -
testcase_25 AC 1,924 ms
10,752 KB
testcase_26 TLE -
testcase_27 AC 166 ms
10,624 KB
testcase_28 AC 1,565 ms
10,624 KB
testcase_29 AC 439 ms
10,496 KB
testcase_30 AC 1,475 ms
10,624 KB
testcase_31 TLE -
testcase_32 AC 1,257 ms
10,496 KB
testcase_33 TLE -
testcase_34 AC 1,695 ms
10,624 KB
testcase_35 AC 422 ms
10,496 KB
testcase_36 AC 571 ms
10,496 KB
testcase_37 AC 574 ms
10,624 KB
testcase_38 AC 567 ms
10,496 KB
testcase_39 TLE -
testcase_40 AC 381 ms
10,496 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 232 ms
10,496 KB
testcase_44 AC 90 ms
10,496 KB
testcase_45 AC 1,120 ms
10,624 KB
testcase_46 AC 1,201 ms
10,624 KB
testcase_47 AC 1,141 ms
10,496 KB
testcase_48 AC 1,276 ms
10,496 KB
testcase_49 AC 1,589 ms
10,496 KB
testcase_50 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = int(1e9) + 7
f = 1
for i in range(n):
    f = (f * (i + 1)) % mod
print(1)
print(f)
print(n)
0