結果

問題 No.502 階乗を計算するだけ
ユーザー kjnho
提出日時 2017-04-07 23:25:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 175 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-16 03:05:18
合計ジャッジ時間 2,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10 RE * 42
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())

    m = 10**9 + 7
    
    if (n >= m):
        print(0)
    else:
        print(math.factorial(n)%m)

if __name__ == "__main__":
    main()
0