結果

問題 No.290 1010
ユーザー kou6839kou6839
提出日時 2015-10-21 12:48:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 296 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 57,300 KB
最終ジャッジ日時 2024-07-22 11:09:18
合計ジャッジ時間 6,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,148 KB
testcase_01 AC 127 ms
53,864 KB
testcase_02 AC 126 ms
54,184 KB
testcase_03 AC 126 ms
54,180 KB
testcase_04 AC 128 ms
53,996 KB
testcase_05 AC 128 ms
53,960 KB
testcase_06 AC 129 ms
53,956 KB
testcase_07 AC 129 ms
53,948 KB
testcase_08 AC 130 ms
54,016 KB
testcase_09 AC 130 ms
54,048 KB
testcase_10 AC 128 ms
53,768 KB
testcase_11 AC 126 ms
54,088 KB
testcase_12 AC 128 ms
54,364 KB
testcase_13 AC 128 ms
53,984 KB
testcase_14 AC 116 ms
53,116 KB
testcase_15 AC 128 ms
53,916 KB
testcase_16 AC 128 ms
53,988 KB
testcase_17 AC 130 ms
53,988 KB
testcase_18 AC 130 ms
54,136 KB
testcase_19 AC 128 ms
53,776 KB
testcase_20 AC 291 ms
57,300 KB
testcase_21 AC 296 ms
56,936 KB
testcase_22 AC 281 ms
56,936 KB
testcase_23 AC 290 ms
57,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		int n = sc.nextInt();
		String in = sc.next();
		if(in.length()>=4) System.out.println("YES");
		else if(in.length()==1) System.out.println("NO");
		else{
			for(int i=0;i<in.length()-1;i++){
				if(in.charAt(i)==in.charAt(i+1)){
					System.out.println("YES");
					return;
				}
			}
			System.out.println("NO");
		}
		
	}
}
0