結果

問題 No.2063 ±2^k operations (easy)
ユーザー V_MelvilleV_Melville
提出日時 2022-09-02 21:59:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 81,304 KB
実行使用メモリ 65,472 KB
最終ジャッジ日時 2024-11-16 03:23:56
合計ジャッジ時間 2,380 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,148 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 39 ms
52,808 KB
testcase_03 AC 38 ms
52,764 KB
testcase_04 AC 38 ms
51,936 KB
testcase_05 WA -
testcase_06 AC 38 ms
52,600 KB
testcase_07 WA -
testcase_08 AC 38 ms
52,012 KB
testcase_09 AC 39 ms
51,292 KB
testcase_10 AC 38 ms
52,880 KB
testcase_11 AC 38 ms
51,624 KB
testcase_12 AC 38 ms
52,700 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,468 KB
testcase_15 AC 38 ms
52,128 KB
testcase_16 AC 40 ms
52,928 KB
testcase_17 AC 45 ms
65,472 KB
testcase_18 AC 44 ms
65,172 KB
testcase_19 AC 45 ms
64,016 KB
testcase_20 AC 46 ms
65,440 KB
testcase_21 WA -
testcase_22 AC 45 ms
65,448 KB
testcase_23 AC 46 ms
64,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)
cnt = 0
for c in s:
    if c == '1':
        cnt += 1
if min(cnt, n-cnt) == 2:
    print("Yes")
else:
    print("No")
0