結果
| 問題 | No.2063 ±2^k operations (easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-02 21:52:01 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| コード長 | 368 bytes |
| 記録 | |
| コンパイル時間 | 388 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 72,832 KB |
| 最終ジャッジ日時 | 2026-05-11 07:06:55 |
| 合計ジャッジ時間 | 3,258 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
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")