結果

問題 No.290 1010
ユーザー tentententen
提出日時 2020-12-18 15:36:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 323 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 2,553 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 61,384 KB
最終ジャッジ日時 2024-09-21 09:11:32
合計ジャッジ時間 7,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,028 KB
testcase_01 AC 154 ms
54,348 KB
testcase_02 AC 146 ms
54,012 KB
testcase_03 AC 144 ms
54,144 KB
testcase_04 AC 146 ms
54,028 KB
testcase_05 AC 144 ms
54,140 KB
testcase_06 AC 152 ms
53,924 KB
testcase_07 AC 149 ms
54,404 KB
testcase_08 AC 144 ms
54,160 KB
testcase_09 AC 144 ms
54,096 KB
testcase_10 AC 144 ms
53,872 KB
testcase_11 AC 142 ms
54,200 KB
testcase_12 AC 147 ms
54,188 KB
testcase_13 AC 143 ms
54,056 KB
testcase_14 AC 145 ms
54,092 KB
testcase_15 AC 150 ms
54,132 KB
testcase_16 AC 144 ms
54,072 KB
testcase_17 AC 145 ms
54,100 KB
testcase_18 AC 145 ms
54,124 KB
testcase_19 AC 144 ms
54,048 KB
testcase_20 AC 319 ms
61,384 KB
testcase_21 AC 319 ms
61,180 KB
testcase_22 AC 318 ms
61,172 KB
testcase_23 AC 323 ms
61,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        char[] arr = sc.next().toCharArray();
        boolean can;
        if (n == 1) {
            can = false;
        } else if (n == 2) {
            can = (arr[0] == arr[1]);
        } else if (n == 3) {
            can = (arr[0] == arr[1] || arr[1] == arr[2]);
        } else {
            can = true;
        }
        if (can) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0