結果

問題 No.290 1010
ユーザー ぴろずぴろず
提出日時 2015-10-17 15:46:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 2,017 ms
コンパイル使用メモリ 73,656 KB
実行使用メモリ 57,252 KB
最終ジャッジ日時 2024-07-22 10:12:50
合計ジャッジ時間 6,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,984 KB
testcase_01 AC 117 ms
54,000 KB
testcase_02 AC 111 ms
53,604 KB
testcase_03 AC 117 ms
54,204 KB
testcase_04 AC 115 ms
54,048 KB
testcase_05 AC 121 ms
53,904 KB
testcase_06 AC 118 ms
54,148 KB
testcase_07 AC 123 ms
53,944 KB
testcase_08 AC 127 ms
53,928 KB
testcase_09 AC 100 ms
52,584 KB
testcase_10 AC 115 ms
54,152 KB
testcase_11 AC 119 ms
53,844 KB
testcase_12 AC 113 ms
54,108 KB
testcase_13 AC 122 ms
54,276 KB
testcase_14 AC 118 ms
54,328 KB
testcase_15 AC 121 ms
54,000 KB
testcase_16 AC 116 ms
54,028 KB
testcase_17 AC 108 ms
53,108 KB
testcase_18 AC 117 ms
54,108 KB
testcase_19 AC 108 ms
53,084 KB
testcase_20 AC 272 ms
57,112 KB
testcase_21 AC 250 ms
57,076 KB
testcase_22 AC 308 ms
57,252 KB
testcase_23 AC 267 ms
57,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no290;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String s = sc.next();
		if (s.contains("00") || s.contains("11") || s.contains("0101") || s.contains("1010")) {
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}

}
0