結果
| 問題 | No.502 階乗を計算するだけ |
| コンテスト | |
| ユーザー |
gew1fw
|
| 提出日時 | 2025-06-12 20:38:46 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 163 bytes |
| コンパイル時間 | 320 ms |
| コンパイル使用メモリ | 81,948 KB |
| 実行使用メモリ | 66,260 KB |
| 最終ジャッジ日時 | 2025-06-12 20:39:01 |
| 合計ジャッジ時間 | 4,851 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 32 TLE * 1 -- * 19 |
ソースコード
n = int(input())
mod = 10**9 + 7
if n >= mod:
print(0)
else:
result = 1
for i in range(2, n + 1):
result = (result * i) % mod
print(result)
gew1fw