結果

問題 No.1277 級数入り級数
ユーザー ayaoniayaoni
提出日時 2020-10-31 01:12:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 59,692 KB
最終ジャッジ日時 2024-07-22 04:11:53
合計ジャッジ時間 4,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,744 KB
testcase_01 AC 39 ms
51,876 KB
testcase_02 AC 41 ms
58,568 KB
testcase_03 AC 39 ms
58,676 KB
testcase_04 AC 41 ms
58,160 KB
testcase_05 AC 41 ms
58,980 KB
testcase_06 AC 40 ms
58,448 KB
testcase_07 AC 40 ms
58,984 KB
testcase_08 AC 41 ms
59,692 KB
testcase_09 AC 75 ms
58,608 KB
testcase_10 AC 72 ms
59,236 KB
testcase_11 AC 78 ms
58,324 KB
testcase_12 AC 65 ms
58,444 KB
testcase_13 AC 50 ms
58,812 KB
testcase_14 AC 79 ms
57,972 KB
testcase_15 AC 102 ms
58,056 KB
testcase_16 AC 85 ms
58,644 KB
testcase_17 AC 89 ms
59,104 KB
testcase_18 AC 103 ms
58,052 KB
testcase_19 AC 104 ms
59,512 KB
testcase_20 AC 52 ms
58,184 KB
testcase_21 AC 73 ms
58,048 KB
testcase_22 AC 82 ms
58,224 KB
testcase_23 AC 60 ms
58,380 KB
testcase_24 AC 97 ms
58,500 KB
testcase_25 AC 89 ms
57,852 KB
testcase_26 AC 104 ms
58,036 KB
testcase_27 AC 42 ms
59,240 KB
testcase_28 AC 79 ms
58,316 KB
testcase_29 AC 50 ms
59,220 KB
testcase_30 AC 76 ms
57,956 KB
testcase_31 AC 90 ms
57,896 KB
testcase_32 AC 69 ms
58,128 KB
testcase_33 AC 103 ms
58,164 KB
testcase_34 AC 84 ms
58,892 KB
testcase_35 AC 50 ms
59,340 KB
testcase_36 AC 54 ms
58,408 KB
testcase_37 AC 54 ms
58,372 KB
testcase_38 AC 52 ms
58,080 KB
testcase_39 AC 97 ms
57,900 KB
testcase_40 AC 50 ms
57,932 KB
testcase_41 AC 92 ms
58,620 KB
testcase_42 AC 89 ms
58,036 KB
testcase_43 AC 45 ms
58,124 KB
testcase_44 AC 42 ms
59,488 KB
testcase_45 AC 69 ms
58,412 KB
testcase_46 AC 68 ms
58,676 KB
testcase_47 AC 68 ms
58,120 KB
testcase_48 AC 69 ms
58,692 KB
testcase_49 AC 81 ms
59,148 KB
testcase_50 AC 36 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def I(): return int(sys.stdin.readline().rstrip())


n = I()
mod = 10**9+7

print(1)

b = 1
for i in range(1,n+1):
    b *= i
    b %= mod
print(b)
print(n)
0