結果

問題 No.290 1010
ユーザー t8m8⛄️t8m8⛄️
提出日時 2016-01-25 17:33:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 328 ms / 5,000 ms
コード長 836 bytes
コンパイル時間 3,841 ms
コンパイル使用メモリ 80,904 KB
実行使用メモリ 46,216 KB
最終ジャッジ日時 2024-09-21 16:12:35
合計ジャッジ時間 9,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,276 KB
testcase_01 AC 137 ms
41,680 KB
testcase_02 AC 121 ms
40,052 KB
testcase_03 AC 123 ms
40,280 KB
testcase_04 AC 132 ms
41,436 KB
testcase_05 AC 136 ms
41,512 KB
testcase_06 AC 132 ms
41,432 KB
testcase_07 AC 127 ms
40,688 KB
testcase_08 AC 119 ms
40,072 KB
testcase_09 AC 130 ms
41,180 KB
testcase_10 AC 131 ms
41,276 KB
testcase_11 AC 139 ms
41,356 KB
testcase_12 AC 134 ms
41,460 KB
testcase_13 AC 134 ms
41,492 KB
testcase_14 AC 137 ms
41,316 KB
testcase_15 AC 136 ms
41,376 KB
testcase_16 AC 136 ms
41,436 KB
testcase_17 AC 135 ms
41,492 KB
testcase_18 AC 132 ms
41,436 KB
testcase_19 AC 120 ms
40,352 KB
testcase_20 AC 326 ms
46,092 KB
testcase_21 AC 323 ms
46,216 KB
testcase_22 AC 328 ms
45,612 KB
testcase_23 AC 319 ms
45,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No0290 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int n = in.nextInt();
		String s = in.next();
		boolean f = false;
		for (int i=0; i<n; i++) {
			if (i + 1 < n && s.charAt(i) == s.charAt(i+1)) f = true;
			if (i + 3 < n && s.charAt(i) == s.charAt(i+2) && s.charAt(i+1) == s.charAt(i+3)) f = true;
		}
		out.println(f ? "YES" : "NO");
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0