結果
| 問題 |
No.3353 リウヴィルの定数計算
|
| コンテスト | |
| ユーザー |
nikoro256
|
| 提出日時 | 2025-11-14 21:28:14 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 167 bytes |
| コンパイル時間 | 154 ms |
| コンパイル使用メモリ | 82,884 KB |
| 実行使用メモリ | 54,236 KB |
| 最終ジャッジ日時 | 2025-11-14 21:28:19 |
| 合計ジャッジ時間 | 1,628 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 20 |
ソースコード
N=int(input())
d = []
for i in range(1,21):
res = 1
for j in range(1,i+1):
res *= j
d.append(res)
if N in d:
print("Yes")
else:
print("No")
nikoro256