結果
問題 | No.2063 ±2^k operations (easy) |
ユーザー |
|
提出日時 | 2022-09-02 21:52:01 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 368 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,108 KB |
実行使用メモリ | 73,872 KB |
最終ジャッジ日時 | 2024-11-16 03:11:16 |
合計ジャッジ時間 | 1,842 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
L = list(map(int, list(input())))n = len(L)cnt = 0seq_flag = Falsefor i in range(n):if L[i] == 1:if i == 0:cnt += 1else:if L[i] == L[i - 1]:seq_flag = Trueelse:cnt += 1if (seq_flag and cnt == 1) or (not seq_flag and cnt == 2):print("Yes")else:print("No")