結果
| 問題 | No.1277 級数入り級数 |
| コンテスト | |
| ユーザー |
realDivineJK
|
| 提出日時 | 2021-04-02 00:51:23 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 115 bytes |
| 記録 | |
| コンパイル時間 | 521 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 21,888 KB |
| 最終ジャッジ日時 | 2026-05-28 01:35:31 |
| 合計ジャッジ時間 | 19,108 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 1 |
| other | AC * 23 TLE * 2 -- * 25 |
ソースコード
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