結果

問題 No.1277 級数入り級数
ユーザー ayaoniayaoni
提出日時 2020-10-31 01:14:10
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 87,224 KB
実行使用メモリ 76,044 KB
最終ジャッジ日時 2023-09-29 09:37:21
合計ジャッジ時間 7,470 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,344 KB
testcase_01 AC 74 ms
71,144 KB
testcase_02 AC 76 ms
75,780 KB
testcase_03 AC 79 ms
75,844 KB
testcase_04 AC 76 ms
75,732 KB
testcase_05 AC 76 ms
75,772 KB
testcase_06 AC 76 ms
75,748 KB
testcase_07 AC 77 ms
75,916 KB
testcase_08 AC 76 ms
75,704 KB
testcase_09 AC 111 ms
75,996 KB
testcase_10 AC 108 ms
75,972 KB
testcase_11 AC 113 ms
75,740 KB
testcase_12 AC 98 ms
75,944 KB
testcase_13 AC 86 ms
75,832 KB
testcase_14 AC 120 ms
75,804 KB
testcase_15 AC 139 ms
75,832 KB
testcase_16 AC 122 ms
75,964 KB
testcase_17 AC 123 ms
75,904 KB
testcase_18 AC 140 ms
75,984 KB
testcase_19 AC 142 ms
75,800 KB
testcase_20 AC 89 ms
75,740 KB
testcase_21 AC 114 ms
75,740 KB
testcase_22 AC 119 ms
75,780 KB
testcase_23 AC 97 ms
75,828 KB
testcase_24 AC 135 ms
75,744 KB
testcase_25 AC 126 ms
75,748 KB
testcase_26 AC 143 ms
75,732 KB
testcase_27 AC 80 ms
75,832 KB
testcase_28 AC 116 ms
75,788 KB
testcase_29 AC 87 ms
75,776 KB
testcase_30 AC 114 ms
75,816 KB
testcase_31 AC 127 ms
75,916 KB
testcase_32 AC 106 ms
75,836 KB
testcase_33 AC 139 ms
76,008 KB
testcase_34 AC 120 ms
75,844 KB
testcase_35 AC 88 ms
76,044 KB
testcase_36 AC 91 ms
75,896 KB
testcase_37 AC 92 ms
75,772 KB
testcase_38 AC 98 ms
76,008 KB
testcase_39 AC 137 ms
75,844 KB
testcase_40 AC 87 ms
75,904 KB
testcase_41 AC 130 ms
75,984 KB
testcase_42 AC 128 ms
75,744 KB
testcase_43 AC 86 ms
75,912 KB
testcase_44 AC 83 ms
75,900 KB
testcase_45 AC 107 ms
75,812 KB
testcase_46 AC 107 ms
75,964 KB
testcase_47 AC 106 ms
75,912 KB
testcase_48 AC 108 ms
75,920 KB
testcase_49 AC 116 ms
75,716 KB
testcase_50 AC 74 ms
71,296 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