結果

問題 No.1277 級数入り級数
ユーザー realDivineJKrealDivineJK
提出日時 2021-04-02 00:51:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 115 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-01 05:29:08
合計ジャッジ時間 62,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 33 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 32 ms
10,496 KB
testcase_09 AC 1,430 ms
10,624 KB
testcase_10 AC 1,302 ms
10,624 KB
testcase_11 AC 1,679 ms
10,496 KB
testcase_12 AC 975 ms
10,496 KB
testcase_13 AC 530 ms
10,624 KB
testcase_14 AC 1,703 ms
10,624 KB
testcase_15 TLE -
testcase_16 AC 1,924 ms
10,752 KB
testcase_17 AC 1,972 ms
10,496 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 464 ms
10,496 KB
testcase_21 AC 1,371 ms
10,496 KB
testcase_22 AC 1,789 ms
10,624 KB
testcase_23 AC 833 ms
10,624 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 162 ms
10,624 KB
testcase_28 AC 1,752 ms
10,496 KB
testcase_29 AC 435 ms
10,752 KB
testcase_30 AC 1,505 ms
10,752 KB
testcase_31 TLE -
testcase_32 AC 1,199 ms
10,752 KB
testcase_33 TLE -
testcase_34 AC 1,782 ms
10,752 KB
testcase_35 AC 417 ms
10,752 KB
testcase_36 AC 619 ms
10,752 KB
testcase_37 AC 602 ms
10,752 KB
testcase_38 AC 578 ms
10,496 KB
testcase_39 TLE -
testcase_40 AC 364 ms
10,496 KB
testcase_41 TLE -
testcase_42 AC 1,996 ms
10,624 KB
testcase_43 AC 243 ms
10,496 KB
testcase_44 AC 96 ms
10,624 KB
testcase_45 AC 1,215 ms
10,496 KB
testcase_46 AC 1,171 ms
10,752 KB
testcase_47 AC 1,285 ms
10,624 KB
testcase_48 AC 1,235 ms
10,624 KB
testcase_49 AC 1,788 ms
10,752 KB
testcase_50 AC 31 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