結果

問題 No.2063 ±2^k operations (easy)
ユーザー lloyz
提出日時 2022-09-02 21:52:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-11-16 03:11:34
合計ジャッジ時間 1,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

L = list(map(int, list(input())))

n = len(L)
cnt = 0
seq_flag = False
for i in range(n):
    if L[i] == 1:
        if i == 0:
            cnt += 1
        else:
            if L[i] == L[i - 1]:
                seq_flag = True
            else:
                cnt += 1
if (seq_flag and cnt == 1) or (not seq_flag and cnt == 2):
    print("Yes")
else:
    print("No")
0