結果

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

テストケース

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

ソースコード

diff #

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

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