結果
| 問題 | No.502 階乗を計算するだけ |
| コンテスト | |
| ユーザー |
Justinlam33
|
| 提出日時 | 2017-04-12 15:35:50 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 75 bytes |
| 記録 | |
| コンパイル時間 | 332 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 28,540 KB |
| 最終ジャッジ日時 | 2026-04-02 02:30:09 |
| 合計ジャッジ時間 | 5,190 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 TLE * 1 -- * 29 |
ソースコード
n=int(input()) x=1 for var in range(1,n+1): x*=var print(x%(pow(10,9)+7))
Justinlam33