結果

問題 No.2063 ±2^k operations (easy)
ユーザー flygonflygon
提出日時 2022-09-15 22:37:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 75,768 KB
最終ジャッジ日時 2024-12-17 16:30:26
合計ジャッジ時間 2,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,580 KB
testcase_01 AC 34 ms
52,336 KB
testcase_02 AC 34 ms
52,180 KB
testcase_03 AC 34 ms
52,744 KB
testcase_04 AC 33 ms
52,328 KB
testcase_05 AC 32 ms
52,392 KB
testcase_06 AC 36 ms
53,880 KB
testcase_07 AC 36 ms
52,744 KB
testcase_08 AC 32 ms
53,276 KB
testcase_09 AC 33 ms
52,892 KB
testcase_10 AC 34 ms
52,816 KB
testcase_11 AC 34 ms
52,008 KB
testcase_12 AC 33 ms
53,088 KB
testcase_13 WA -
testcase_14 AC 37 ms
53,024 KB
testcase_15 AC 33 ms
52,572 KB
testcase_16 AC 33 ms
52,704 KB
testcase_17 AC 40 ms
67,804 KB
testcase_18 AC 41 ms
68,076 KB
testcase_19 AC 39 ms
66,972 KB
testcase_20 AC 40 ms
68,136 KB
testcase_21 AC 41 ms
63,876 KB
testcase_22 AC 50 ms
75,188 KB
testcase_23 AC 50 ms
75,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
x = []
cnt = 0
for i,c in enumerate(n):
  if c == "1": cnt += 1
  if i == 0:
    x.append(c)
  else:
    if n[i-1] == c: continue
    else:
      x.append(x)

if cnt == 1: print("No");exit()
if cnt == 2: print("Yes");exit()
elif len(x) == 1:print('No')
elif len(x) == 2:
  print('Yes')
else:
  print('No')
0