結果
| 問題 | No.3353 リウヴィルの定数計算 |
| コンテスト | |
| ユーザー |
ゼット
|
| 提出日時 | 2025-11-14 22:34:54 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 135 bytes |
| 記録 | |
| コンパイル時間 | 240 ms |
| コンパイル使用メモリ | 95,592 KB |
| 実行使用メモリ | 78,720 KB |
| 最終ジャッジ日時 | 2026-07-16 15:30:09 |
| 合計ジャッジ時間 | 3,054 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 20 |
ソースコード
x=1
A=set()
for y in range(1,100):
x*=y
if x>100:
break
A.add(x)
N=int(input())
if N in A:
print('Yes')
else:
print('No')
ゼット