結果
| 問題 |
No.1277 級数入り級数
|
| コンテスト | |
| ユーザー |
realDivineJK
|
| 提出日時 | 2021-04-02 00:51:23 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 115 bytes |
| コンパイル時間 | 94 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-12-21 08:38:32 |
| 合計ジャッジ時間 | 59,610 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 39 TLE * 11 |
ソースコード
n = int(input())
mod = int(1e9) + 7
f = 1
for i in range(n):
f = (f * (i + 1)) % mod
print(1)
print(f)
print(n)
realDivineJK