結果

問題 No.2063 ±2^k operations (easy)
ユーザー xZen1xZen1
提出日時 2022-09-02 22:36:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 124 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 58,724 KB
最終ジャッジ日時 2024-11-16 04:45:09
合計ジャッジ時間 1,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,548 KB
testcase_01 AC 41 ms
52,308 KB
testcase_02 AC 38 ms
52,684 KB
testcase_03 AC 39 ms
51,496 KB
testcase_04 AC 38 ms
52,228 KB
testcase_05 AC 37 ms
52,980 KB
testcase_06 AC 38 ms
53,448 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,616 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 37 ms
52,388 KB
testcase_11 AC 39 ms
53,296 KB
testcase_12 AC 38 ms
52,144 KB
testcase_13 WA -
testcase_14 AC 37 ms
51,780 KB
testcase_15 AC 37 ms
52,632 KB
testcase_16 AC 37 ms
53,088 KB
testcase_17 AC 40 ms
58,724 KB
testcase_18 AC 41 ms
56,844 KB
testcase_19 AC 40 ms
57,252 KB
testcase_20 AC 41 ms
57,648 KB
testcase_21 WA -
testcase_22 AC 41 ms
56,520 KB
testcase_23 AC 41 ms
57,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = list(input())
if n.count("1") == 2 or (n.count("0") == 2 and n.count("1") != 1):
    print('Yes')
else:
    print('No')
0