結果

問題 No.2450 99-like Number
ユーザー 👑 colognecologne
提出日時 2023-09-02 11:02:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 101 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 87,176 KB
実行使用メモリ 72,232 KB
最終ジャッジ日時 2023-09-02 11:02:30
合計ジャッジ時間 3,096 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,340 KB
testcase_01 AC 72 ms
71,876 KB
testcase_02 AC 72 ms
71,952 KB
testcase_03 WA -
testcase_04 AC 71 ms
71,624 KB
testcase_05 AC 72 ms
71,604 KB
testcase_06 AC 73 ms
71,468 KB
testcase_07 AC 72 ms
71,844 KB
testcase_08 WA -
testcase_09 AC 73 ms
71,524 KB
testcase_10 AC 71 ms
71,560 KB
testcase_11 AC 71 ms
71,648 KB
testcase_12 AC 71 ms
71,476 KB
testcase_13 AC 71 ms
71,884 KB
testcase_14 AC 71 ms
71,528 KB
testcase_15 AC 73 ms
71,892 KB
testcase_16 AC 72 ms
71,680 KB
testcase_17 AC 70 ms
71,472 KB
testcase_18 AC 70 ms
71,716 KB
testcase_19 AC 73 ms
71,924 KB
testcase_20 AC 71 ms
71,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
Z = float(input()) + 1
print('Yes' if Z == float(pow(10, int(math.log10(Z)))) else 'No')
0