結果

問題 No.2063 ±2^k operations (easy)
ユーザー kozykozy
提出日時 2022-09-02 21:23:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 60,912 KB
最終ジャッジ日時 2024-11-16 02:11:40
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,232 KB
testcase_01 AC 39 ms
52,384 KB
testcase_02 AC 38 ms
52,228 KB
testcase_03 AC 40 ms
52,312 KB
testcase_04 AC 35 ms
53,256 KB
testcase_05 AC 34 ms
53,284 KB
testcase_06 AC 34 ms
52,120 KB
testcase_07 AC 33 ms
53,076 KB
testcase_08 AC 33 ms
52,972 KB
testcase_09 AC 35 ms
52,820 KB
testcase_10 AC 31 ms
52,272 KB
testcase_11 AC 33 ms
52,640 KB
testcase_12 AC 34 ms
53,488 KB
testcase_13 AC 32 ms
52,028 KB
testcase_14 AC 32 ms
52,036 KB
testcase_15 AC 33 ms
52,216 KB
testcase_16 AC 33 ms
51,776 KB
testcase_17 AC 34 ms
53,692 KB
testcase_18 AC 33 ms
52,560 KB
testcase_19 AC 33 ms
53,616 KB
testcase_20 AC 33 ms
52,272 KB
testcase_21 AC 45 ms
59,276 KB
testcase_22 AC 39 ms
59,088 KB
testcase_23 AC 39 ms
60,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
if S.count("1")<=1:
  print("No")
  exit()
if S.count("1")<=2:
  print("Yes")
  exit()
S="0"+S
k=0
for i in range(len(S)-1):
  if S[i]=="0" and S[i+1]=="1":
    k+=1
if k<=1:
  print("Yes")
  exit()
print("No")
0