結果

問題 No.2063 ±2^k operations (easy)
ユーザー ShirotsumeShirotsume
提出日時 2022-09-02 22:29:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 78,692 KB
最終ジャッジ日時 2024-11-16 04:29:52
合計ジャッジ時間 2,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,828 KB
testcase_01 AC 41 ms
52,456 KB
testcase_02 AC 39 ms
52,620 KB
testcase_03 AC 38 ms
53,424 KB
testcase_04 AC 38 ms
51,808 KB
testcase_05 AC 38 ms
53,228 KB
testcase_06 AC 38 ms
52,820 KB
testcase_07 AC 38 ms
52,308 KB
testcase_08 AC 38 ms
53,752 KB
testcase_09 AC 38 ms
52,408 KB
testcase_10 AC 38 ms
52,316 KB
testcase_11 AC 38 ms
52,936 KB
testcase_12 AC 38 ms
53,284 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,264 KB
testcase_15 AC 37 ms
53,236 KB
testcase_16 AC 38 ms
52,284 KB
testcase_17 AC 44 ms
62,720 KB
testcase_18 AC 44 ms
61,664 KB
testcase_19 AC 43 ms
61,864 KB
testcase_20 AC 43 ms
62,664 KB
testcase_21 AC 44 ms
62,904 KB
testcase_22 AC 178 ms
78,692 KB
testcase_23 AC 177 ms
78,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = input()

ans = 'No'

if n.count('1') == 2:
    ans = 'Yes'
n += '#'
x = ''
for i in range(len(n) - 1):
    if n[i] != n[i+1]:
        x += n[i]

if n.count('1') > 1 and (x == '10' or x == '01'):
    ans = 'Yes'
print(ans)
0