結果

問題 No.2063 ±2^k operations (easy)
ユーザー zncudzncud
提出日時 2022-09-25 21:27:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-01 23:22:30
合計ジャッジ時間 1,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 26 ms
10,752 KB
testcase_14 WA -
testcase_15 AC 28 ms
10,752 KB
testcase_16 WA -
testcase_17 AC 72 ms
11,008 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 73 ms
10,880 KB
testcase_21 AC 71 ms
10,880 KB
testcase_22 AC 28 ms
11,136 KB
testcase_23 AC 27 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve_a():
    n = str(input())
    cnt = 0
    flag = False
    for i in range(len(n)):
        if int(n[i]) == 1:
            cnt += 1
            if flag:
                print('No')
                return
        if int(n[i]) == 0:
            flag = True
    if cnt == 2:
        print('Yes')
    elif cnt == 1:
        print('No')
    else:
        print('Yes')

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