結果
| 問題 | No.290 1010 |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-29 22:42:45 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 31 ms / 5,000 ms |
| + 876µs | |
| コード長 | 87 bytes |
| 記録 | |
| コンパイル時間 | 73 ms |
| コンパイル使用メモリ | 81,280 KB |
| 実行使用メモリ | 60,288 KB |
| 最終ジャッジ日時 | 2026-09-10 23:39:20 |
| 合計ジャッジ時間 | 2,436 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
n = int(input())
s = input()
print("YES" if n >= 4 or "00" in s or "11" in s else "NO")
convexineq