結果

問題 No.2063 ±2^k operations (easy)
ユーザー ShirotsumeShirotsume
提出日時 2022-09-02 22:32:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 78,932 KB
最終ジャッジ日時 2024-11-16 04:39:37
合計ジャッジ時間 2,194 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,496 KB
testcase_01 AC 32 ms
52,880 KB
testcase_02 AC 32 ms
52,884 KB
testcase_03 AC 31 ms
52,820 KB
testcase_04 AC 32 ms
52,064 KB
testcase_05 AC 32 ms
52,092 KB
testcase_06 AC 34 ms
53,120 KB
testcase_07 AC 32 ms
52,760 KB
testcase_08 AC 34 ms
51,820 KB
testcase_09 AC 33 ms
52,212 KB
testcase_10 AC 32 ms
52,444 KB
testcase_11 AC 32 ms
52,884 KB
testcase_12 AC 33 ms
52,828 KB
testcase_13 AC 32 ms
52,276 KB
testcase_14 AC 32 ms
51,944 KB
testcase_15 AC 34 ms
52,928 KB
testcase_16 AC 35 ms
52,408 KB
testcase_17 AC 40 ms
61,852 KB
testcase_18 AC 39 ms
62,316 KB
testcase_19 AC 39 ms
61,324 KB
testcase_20 AC 41 ms
62,680 KB
testcase_21 AC 40 ms
63,404 KB
testcase_22 AC 157 ms
78,584 KB
testcase_23 AC 154 ms
78,932 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 == '1'):
    ans = 'Yes'
print(ans)
0