結果

問題 No.290 1010
ユーザー tsunabittsunabit
提出日時 2020-03-25 13:31:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 3,640 ms
コンパイル使用メモリ 76,660 KB
実行使用メモリ 58,924 KB
最終ジャッジ日時 2025-01-01 20:28:29
合計ジャッジ時間 7,915 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
54,400 KB
testcase_01 AC 123 ms
54,284 KB
testcase_02 AC 110 ms
54,220 KB
testcase_03 AC 116 ms
54,268 KB
testcase_04 AC 115 ms
54,252 KB
testcase_05 AC 112 ms
54,300 KB
testcase_06 AC 104 ms
54,276 KB
testcase_07 AC 105 ms
54,348 KB
testcase_08 AC 116 ms
54,496 KB
testcase_09 AC 112 ms
54,416 KB
testcase_10 AC 114 ms
54,360 KB
testcase_11 AC 106 ms
54,324 KB
testcase_12 AC 109 ms
54,244 KB
testcase_13 AC 123 ms
54,120 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 107 ms
54,300 KB
testcase_17 AC 110 ms
54,340 KB
testcase_18 AC 110 ms
54,496 KB
testcase_19 AC 102 ms
54,216 KB
testcase_20 AC 254 ms
58,924 KB
testcase_21 AC 250 ms
58,760 KB
testcase_22 WA -
testcase_23 AC 256 ms
58,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No290 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int mae = 2;
		String s = sc.next();
		for(int i = 0; i < n; i++) {
			int t = s.charAt(i);
			if(mae == t) {
				System.out.println("YES");
				return;
			}
			mae = t;
		}
		System.out.println("NO");
	}
}
0