結果

問題 No.290 1010
ユーザー htensaihtensai
提出日時 2019-12-18 12:00:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-07-06 04:27:38
合計ジャッジ時間 4,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,024 KB
testcase_01 AC 48 ms
50,296 KB
testcase_02 AC 48 ms
50,180 KB
testcase_03 AC 49 ms
50,312 KB
testcase_04 AC 51 ms
50,240 KB
testcase_05 AC 50 ms
49,648 KB
testcase_06 AC 48 ms
49,980 KB
testcase_07 AC 47 ms
50,088 KB
testcase_08 AC 46 ms
50,200 KB
testcase_09 AC 48 ms
49,584 KB
testcase_10 AC 47 ms
50,024 KB
testcase_11 AC 47 ms
50,252 KB
testcase_12 AC 45 ms
50,192 KB
testcase_13 AC 46 ms
50,120 KB
testcase_14 AC 44 ms
49,836 KB
testcase_15 AC 45 ms
49,888 KB
testcase_16 AC 48 ms
50,228 KB
testcase_17 AC 46 ms
49,992 KB
testcase_18 AC 45 ms
49,632 KB
testcase_19 AC 45 ms
50,092 KB
testcase_20 AC 128 ms
53,680 KB
testcase_21 AC 115 ms
54,100 KB
testcase_22 AC 133 ms
54,152 KB
testcase_23 AC 123 ms
53,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        char[] arr = br.readLine().toCharArray();
        for (int i = 1; i < arr.length; i++) {
            if (arr[i] == arr[i - 1]) {
                System.out.println("YES");
                return;
            }
        }
        if (arr.length >= 4) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0