結果

問題 No.2063 ±2^k operations (easy)
ユーザー tamatotamato
提出日時 2022-09-02 21:23:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 62,448 KB
最終ジャッジ日時 2024-11-16 02:12:02
合計ジャッジ時間 1,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,996 KB
testcase_01 AC 36 ms
52,360 KB
testcase_02 AC 37 ms
53,596 KB
testcase_03 AC 37 ms
52,876 KB
testcase_04 AC 36 ms
51,928 KB
testcase_05 AC 35 ms
52,180 KB
testcase_06 AC 36 ms
53,256 KB
testcase_07 AC 36 ms
52,484 KB
testcase_08 AC 36 ms
52,244 KB
testcase_09 AC 37 ms
52,232 KB
testcase_10 AC 37 ms
53,652 KB
testcase_11 AC 37 ms
53,704 KB
testcase_12 AC 36 ms
52,704 KB
testcase_13 AC 36 ms
53,520 KB
testcase_14 AC 35 ms
52,444 KB
testcase_15 AC 36 ms
51,688 KB
testcase_16 AC 37 ms
52,956 KB
testcase_17 AC 37 ms
53,656 KB
testcase_18 AC 38 ms
52,448 KB
testcase_19 AC 37 ms
53,108 KB
testcase_20 AC 37 ms
53,744 KB
testcase_21 AC 41 ms
62,448 KB
testcase_22 AC 35 ms
53,284 KB
testcase_23 AC 34 ms
53,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N = input().rstrip('\n')

    x = N.count("1")
    if x == 1:
        print("No")
    elif x == 2:
        print("Yes")
    else:
        flg = 0
        for n in N:
            if n == "0":
                if flg == 0:
                    flg = 1
            else:
                if flg == 1:
                    print("No")
                    exit()
        print("Yes")


if __name__ == '__main__':
    main()
0