結果

問題 No.2063 ±2^k operations (easy)
ユーザー achapiachapi
提出日時 2022-09-02 21:40:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 101 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 53,552 KB
最終ジャッジ日時 2024-04-27 21:09:16
合計ジャッジ時間 2,095 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,984 KB
testcase_01 AC 39 ms
52,196 KB
testcase_02 AC 38 ms
52,560 KB
testcase_03 AC 37 ms
53,552 KB
testcase_04 AC 38 ms
52,548 KB
testcase_05 AC 38 ms
52,212 KB
testcase_06 WA -
testcase_07 AC 40 ms
52,092 KB
testcase_08 AC 38 ms
52,272 KB
testcase_09 AC 38 ms
52,424 KB
testcase_10 AC 37 ms
53,128 KB
testcase_11 AC 38 ms
52,444 KB
testcase_12 AC 38 ms
52,564 KB
testcase_13 WA -
testcase_14 AC 38 ms
51,992 KB
testcase_15 AC 37 ms
52,700 KB
testcase_16 AC 38 ms
52,756 KB
testcase_17 AC 38 ms
52,952 KB
testcase_18 AC 38 ms
52,692 KB
testcase_19 AC 40 ms
53,428 KB
testcase_20 AC 38 ms
53,232 KB
testcase_21 WA -
testcase_22 AC 38 ms
52,608 KB
testcase_23 AC 38 ms
52,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
if s.count("1")==2 or (s.count("0")==2 and s[-2]==s[-1]=="0"):print("Yes")
else:print("No")
0