結果

問題 No.2063 ±2^k operations (easy)
ユーザー rlangevinrlangevin
提出日時 2024-11-26 12:13:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 63,692 KB
最終ジャッジ日時 2024-11-26 12:14:03
合計ジャッジ時間 1,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,424 KB
testcase_01 AC 38 ms
52,340 KB
testcase_02 AC 36 ms
52,488 KB
testcase_03 AC 35 ms
53,444 KB
testcase_04 AC 35 ms
52,360 KB
testcase_05 AC 36 ms
52,732 KB
testcase_06 AC 38 ms
52,244 KB
testcase_07 AC 40 ms
53,012 KB
testcase_08 AC 39 ms
51,964 KB
testcase_09 AC 39 ms
51,828 KB
testcase_10 AC 45 ms
53,896 KB
testcase_11 AC 40 ms
52,332 KB
testcase_12 AC 39 ms
52,736 KB
testcase_13 AC 35 ms
53,368 KB
testcase_14 AC 36 ms
52,452 KB
testcase_15 AC 35 ms
53,232 KB
testcase_16 AC 35 ms
52,212 KB
testcase_17 AC 38 ms
59,052 KB
testcase_18 AC 40 ms
59,640 KB
testcase_19 AC 40 ms
57,140 KB
testcase_20 AC 42 ms
58,020 KB
testcase_21 AC 47 ms
63,692 KB
testcase_22 AC 43 ms
58,616 KB
testcase_23 AC 46 ms
58,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = ["0"] + list(input())
if N.count("1") == 1:
    print("No")
    exit()
if N.count("1") == 2:
    print("Yes")
    exit()
 
flag = 0
flag2 = 0
for i in range(len(N) - 1):
    if N[i] == "0" and N[i + 1] == "1":
        flag = 1
        if flag2:
            print("No")
            exit()
    if N[i] == "1" and N[i + 1] == "0" and flag:
        flag2 = 1
print("Yes")
0