結果

問題 No.2063 ±2^k operations (easy)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-09-02 22:01:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 73,100 KB
最終ジャッジ日時 2024-11-16 03:26:45
合計ジャッジ時間 1,974 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 38 ms
51,708 KB
testcase_02 AC 38 ms
53,360 KB
testcase_03 AC 38 ms
52,580 KB
testcase_04 AC 38 ms
53,292 KB
testcase_05 AC 38 ms
51,624 KB
testcase_06 AC 37 ms
52,124 KB
testcase_07 AC 38 ms
51,996 KB
testcase_08 AC 38 ms
51,828 KB
testcase_09 AC 38 ms
52,080 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 38 ms
52,372 KB
testcase_12 AC 38 ms
52,040 KB
testcase_13 WA -
testcase_14 AC 39 ms
53,524 KB
testcase_15 AC 38 ms
52,500 KB
testcase_16 AC 38 ms
52,624 KB
testcase_17 AC 38 ms
52,816 KB
testcase_18 AC 39 ms
53,848 KB
testcase_19 AC 38 ms
53,084 KB
testcase_20 AC 38 ms
52,548 KB
testcase_21 AC 46 ms
65,596 KB
testcase_22 AC 49 ms
71,676 KB
testcase_23 AC 49 ms
73,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
c = n.count("1")
if c == 1:
    print("No")
elif c == 2:
    print("Yes")
else:
    num = 0
    for a,na in zip(n,n[1:]):
        if a != na:
            num += 1
    if num == 1:
        print("Yes")
    else:
        print("No")
0