結果

問題 No.1277 級数入り級数
ユーザー chineristACchineristAC
提出日時 2020-10-30 22:55:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 59,488 KB
最終ジャッジ日時 2024-07-22 02:36:11
合計ジャッジ時間 5,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,464 KB
testcase_01 AC 37 ms
52,880 KB
testcase_02 AC 41 ms
57,560 KB
testcase_03 AC 43 ms
58,256 KB
testcase_04 AC 41 ms
58,640 KB
testcase_05 AC 41 ms
58,660 KB
testcase_06 AC 39 ms
58,476 KB
testcase_07 AC 41 ms
58,856 KB
testcase_08 AC 42 ms
57,508 KB
testcase_09 AC 72 ms
58,120 KB
testcase_10 AC 72 ms
58,380 KB
testcase_11 AC 76 ms
57,916 KB
testcase_12 AC 63 ms
58,072 KB
testcase_13 AC 52 ms
57,488 KB
testcase_14 AC 81 ms
58,896 KB
testcase_15 AC 102 ms
58,108 KB
testcase_16 AC 85 ms
57,716 KB
testcase_17 AC 87 ms
58,704 KB
testcase_18 AC 101 ms
58,388 KB
testcase_19 AC 101 ms
57,960 KB
testcase_20 AC 49 ms
57,852 KB
testcase_21 AC 70 ms
58,488 KB
testcase_22 AC 78 ms
59,044 KB
testcase_23 AC 58 ms
58,640 KB
testcase_24 AC 95 ms
58,908 KB
testcase_25 AC 86 ms
58,040 KB
testcase_26 AC 102 ms
59,488 KB
testcase_27 AC 44 ms
58,560 KB
testcase_28 AC 76 ms
58,004 KB
testcase_29 AC 52 ms
58,088 KB
testcase_30 AC 74 ms
58,768 KB
testcase_31 AC 88 ms
59,040 KB
testcase_32 AC 67 ms
59,392 KB
testcase_33 AC 99 ms
58,388 KB
testcase_34 AC 82 ms
58,372 KB
testcase_35 AC 50 ms
59,392 KB
testcase_36 AC 55 ms
58,184 KB
testcase_37 AC 55 ms
57,496 KB
testcase_38 AC 55 ms
58,384 KB
testcase_39 AC 96 ms
58,224 KB
testcase_40 AC 47 ms
58,296 KB
testcase_41 AC 89 ms
58,956 KB
testcase_42 AC 89 ms
57,988 KB
testcase_43 AC 44 ms
57,820 KB
testcase_44 AC 42 ms
59,340 KB
testcase_45 AC 67 ms
58,244 KB
testcase_46 AC 66 ms
57,860 KB
testcase_47 AC 69 ms
59,120 KB
testcase_48 AC 69 ms
58,600 KB
testcase_49 AC 78 ms
58,936 KB
testcase_50 AC 37 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 10**9+7

print(1)

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

print(b)

print(n)
0