結果

問題 No.290 1010
ユーザー tsunabittsunabit
提出日時 2020-03-25 13:31:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 3,303 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 57,052 KB
最終ジャッジ日時 2024-06-10 09:57:59
合計ジャッジ時間 8,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,764 KB
testcase_01 AC 115 ms
52,772 KB
testcase_02 AC 133 ms
53,684 KB
testcase_03 AC 133 ms
53,820 KB
testcase_04 AC 132 ms
54,068 KB
testcase_05 AC 133 ms
53,740 KB
testcase_06 AC 130 ms
53,880 KB
testcase_07 AC 132 ms
54,200 KB
testcase_08 AC 131 ms
54,024 KB
testcase_09 AC 131 ms
54,000 KB
testcase_10 AC 132 ms
54,000 KB
testcase_11 AC 132 ms
54,128 KB
testcase_12 AC 131 ms
54,116 KB
testcase_13 AC 132 ms
54,112 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 130 ms
54,072 KB
testcase_17 AC 132 ms
54,120 KB
testcase_18 AC 136 ms
53,880 KB
testcase_19 AC 133 ms
53,944 KB
testcase_20 AC 287 ms
56,868 KB
testcase_21 AC 296 ms
56,940 KB
testcase_22 WA -
testcase_23 AC 292 ms
57,052 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