結果

問題 No.2063 ±2^k operations (easy)
ユーザー Inoue hayateInoue hayate
提出日時 2022-09-17 04:35:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-06-01 14:50:43
合計ジャッジ時間 1,881 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,396 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,648 KB
testcase_03 AC 38 ms
54,116 KB
testcase_04 AC 39 ms
52,296 KB
testcase_05 AC 37 ms
51,776 KB
testcase_06 AC 38 ms
52,804 KB
testcase_07 AC 38 ms
52,564 KB
testcase_08 AC 38 ms
52,760 KB
testcase_09 AC 39 ms
52,500 KB
testcase_10 AC 38 ms
52,160 KB
testcase_11 AC 38 ms
52,704 KB
testcase_12 AC 37 ms
52,640 KB
testcase_13 WA -
testcase_14 AC 39 ms
52,220 KB
testcase_15 AC 37 ms
53,164 KB
testcase_16 AC 37 ms
53,104 KB
testcase_17 AC 37 ms
52,516 KB
testcase_18 AC 38 ms
52,624 KB
testcase_19 AC 37 ms
52,584 KB
testcase_20 AC 37 ms
53,352 KB
testcase_21 WA -
testcase_22 AC 37 ms
52,328 KB
testcase_23 AC 38 ms
53,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()

if n[len(n)-1] == "1":
    n = n[0:len(n)-1] + "0"
    count = n.count("1")
    if count == 1:
        print("Yes")
    else:
        print("No")
else:
    if n.count("1") == 2:
        print("Yes")
    else:
        index = n.find("0")
        if n[0:index].count("0") == 0 & n.count("1") >= 2:
            print("Yes")
        else:
            print("No")
0