結果

問題 No.2450 99-like Number
ユーザー colognecologne
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,208 KB
testcase_01 AC 31 ms
52,680 KB
testcase_02 AC 31 ms
53,632 KB
testcase_03 WA -
testcase_04 AC 31 ms
52,268 KB
testcase_05 AC 30 ms
52,788 KB
testcase_06 AC 30 ms
52,376 KB
testcase_07 AC 31 ms
52,200 KB
testcase_08 WA -
testcase_09 AC 31 ms
53,336 KB
testcase_10 AC 30 ms
52,684 KB
testcase_11 AC 32 ms
52,576 KB
testcase_12 AC 32 ms
52,996 KB
testcase_13 AC 32 ms
54,196 KB
testcase_14 AC 31 ms
53,132 KB
testcase_15 AC 30 ms
52,256 KB
testcase_16 AC 31 ms
52,236 KB
testcase_17 AC 32 ms
52,624 KB
testcase_18 AC 31 ms
53,256 KB
testcase_19 AC 31 ms
53,748 KB
testcase_20 AC 31 ms
52,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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