結果

問題 No.1277 級数入り級数
ユーザー realDivineJKrealDivineJK
提出日時 2021-04-02 00:51:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 115 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 10,504 KB
実行使用メモリ 8,012 KB
最終ジャッジ日時 2023-08-23 07:45:07
合計ジャッジ時間 49,377 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,804 KB
testcase_01 AC 16 ms
7,848 KB
testcase_02 AC 16 ms
7,756 KB
testcase_03 AC 15 ms
7,832 KB
testcase_04 AC 17 ms
7,804 KB
testcase_05 AC 16 ms
7,792 KB
testcase_06 AC 16 ms
7,912 KB
testcase_07 AC 15 ms
7,952 KB
testcase_08 AC 17 ms
7,988 KB
testcase_09 AC 1,246 ms
7,840 KB
testcase_10 AC 1,019 ms
7,976 KB
testcase_11 AC 1,250 ms
7,808 KB
testcase_12 AC 764 ms
7,908 KB
testcase_13 AC 372 ms
7,820 KB
testcase_14 AC 1,312 ms
7,896 KB
testcase_15 TLE -
testcase_16 AC 1,477 ms
7,896 KB
testcase_17 AC 1,555 ms
7,912 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 361 ms
7,808 KB
testcase_21 AC 1,047 ms
7,828 KB
testcase_22 AC 1,306 ms
7,824 KB
testcase_23 AC 639 ms
7,960 KB
testcase_24 AC 1,860 ms
7,840 KB
testcase_25 AC 1,566 ms
7,820 KB
testcase_26 TLE -
testcase_27 AC 109 ms
7,852 KB
testcase_28 AC 1,311 ms
7,832 KB
testcase_29 AC 328 ms
7,964 KB
testcase_30 AC 1,129 ms
7,744 KB
testcase_31 AC 1,624 ms
7,848 KB
testcase_32 AC 969 ms
7,840 KB
testcase_33 TLE -
testcase_34 AC 1,449 ms
7,768 KB
testcase_35 AC 351 ms
7,768 KB
testcase_36 AC 495 ms
7,752 KB
testcase_37 AC 464 ms
7,832 KB
testcase_38 AC 438 ms
7,812 KB
testcase_39 AC 1,914 ms
7,832 KB
testcase_40 AC 270 ms
7,892 KB
testcase_41 AC 1,684 ms
7,820 KB
testcase_42 AC 1,755 ms
7,852 KB
testcase_43 AC 184 ms
7,884 KB
testcase_44 AC 71 ms
7,828 KB
testcase_45 AC 940 ms
7,832 KB
testcase_46 AC 907 ms
7,772 KB
testcase_47 AC 938 ms
7,916 KB
testcase_48 AC 998 ms
7,832 KB
testcase_49 AC 1,300 ms
7,804 KB
testcase_50 AC 15 ms
7,796 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