結果
| 問題 | No.2063 ±2^k operations (easy) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-09-02 21:52:19 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 43 ms / 2,000 ms |
| + 465µs | |
| コード長 | 368 bytes |
| 記録 | |
| コンパイル時間 | 415 ms |
| コンパイル使用メモリ | 14,848 KB |
| 実行使用メモリ | 12,672 KB |
| 最終ジャッジ日時 | 2026-09-24 01:01:56 |
| 合計ジャッジ時間 | 3,001 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge4_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")