結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,332 KB
testcase_01 AC 38 ms
52,872 KB
testcase_02 AC 41 ms
58,604 KB
testcase_03 AC 41 ms
58,484 KB
testcase_04 AC 41 ms
58,236 KB
testcase_05 AC 41 ms
59,204 KB
testcase_06 AC 42 ms
59,120 KB
testcase_07 AC 41 ms
59,060 KB
testcase_08 AC 42 ms
58,524 KB
testcase_09 AC 76 ms
58,128 KB
testcase_10 AC 72 ms
58,340 KB
testcase_11 AC 79 ms
57,768 KB
testcase_12 AC 65 ms
58,556 KB
testcase_13 AC 53 ms
58,936 KB
testcase_14 AC 82 ms
59,280 KB
testcase_15 AC 105 ms
58,008 KB
testcase_16 AC 86 ms
59,100 KB
testcase_17 AC 89 ms
58,248 KB
testcase_18 AC 105 ms
58,304 KB
testcase_19 AC 105 ms
58,276 KB
testcase_20 AC 52 ms
59,100 KB
testcase_21 AC 74 ms
58,112 KB
testcase_22 AC 82 ms
58,264 KB
testcase_23 AC 61 ms
58,108 KB
testcase_24 AC 98 ms
57,884 KB
testcase_25 AC 90 ms
57,772 KB
testcase_26 AC 105 ms
58,412 KB
testcase_27 AC 46 ms
58,312 KB
testcase_28 AC 80 ms
59,612 KB
testcase_29 AC 51 ms
58,368 KB
testcase_30 AC 76 ms
58,460 KB
testcase_31 AC 91 ms
59,376 KB
testcase_32 AC 70 ms
58,004 KB
testcase_33 AC 103 ms
58,156 KB
testcase_34 AC 83 ms
57,708 KB
testcase_35 AC 49 ms
58,972 KB
testcase_36 AC 54 ms
58,204 KB
testcase_37 AC 55 ms
58,668 KB
testcase_38 AC 54 ms
58,240 KB
testcase_39 AC 101 ms
57,904 KB
testcase_40 AC 50 ms
57,908 KB
testcase_41 AC 92 ms
57,772 KB
testcase_42 AC 90 ms
58,904 KB
testcase_43 AC 47 ms
59,096 KB
testcase_44 AC 42 ms
57,960 KB
testcase_45 AC 69 ms
57,980 KB
testcase_46 AC 68 ms
57,788 KB
testcase_47 AC 69 ms
58,128 KB
testcase_48 AC 71 ms
58,816 KB
testcase_49 AC 81 ms
57,808 KB
testcase_50 AC 38 ms
52,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
print(1)
b = 1
for i in range(1,n+1):
    b *= i
    b %= 10**9+7
print(b)
print(n)
0