結果
| 問題 |
No.2450 99-like Number
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-09-02 11:02:26 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 101 bytes |
| コンパイル時間 | 694 ms |
| コンパイル使用メモリ | 82,468 KB |
| 実行使用メモリ | 54,196 KB |
| 最終ジャッジ日時 | 2024-06-11 17:42:35 |
| 合計ジャッジ時間 | 1,766 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 WA * 2 |
ソースコード
import math
Z = float(input()) + 1
print('Yes' if Z == float(pow(10, int(math.log10(Z)))) else 'No')