結果

問題 No.290 1010
ユーザー tsunabittsunabit
提出日時 2020-03-25 14:34:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 263 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 4,057 ms
コンパイル使用メモリ 77,004 KB
実行使用メモリ 58,944 KB
最終ジャッジ日時 2025-01-01 23:50:37
合計ジャッジ時間 8,333 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
54,316 KB
testcase_01 AC 107 ms
54,260 KB
testcase_02 AC 106 ms
54,340 KB
testcase_03 AC 102 ms
54,316 KB
testcase_04 AC 108 ms
54,124 KB
testcase_05 AC 107 ms
54,340 KB
testcase_06 AC 105 ms
54,428 KB
testcase_07 AC 115 ms
54,424 KB
testcase_08 AC 112 ms
54,504 KB
testcase_09 AC 112 ms
54,404 KB
testcase_10 AC 111 ms
54,400 KB
testcase_11 AC 108 ms
54,272 KB
testcase_12 AC 109 ms
54,344 KB
testcase_13 AC 108 ms
54,484 KB
testcase_14 AC 121 ms
54,116 KB
testcase_15 AC 104 ms
54,316 KB
testcase_16 AC 104 ms
54,204 KB
testcase_17 AC 107 ms
54,308 KB
testcase_18 AC 105 ms
54,236 KB
testcase_19 AC 108 ms
54,128 KB
testcase_20 AC 248 ms
58,756 KB
testcase_21 AC 254 ms
58,944 KB
testcase_22 AC 253 ms
58,772 KB
testcase_23 AC 263 ms
58,824 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();
		String s = sc.next();
		if(s.length() < 2) {
			System.out.println("NO");
			return;
		}
		for(int i = 0; i < n; i++) {
			for(int j = i; j < n; j++) {
				if(j+(j+1-i) < n) {
					String m = s.substring(i, j+1);
					String a = s.substring(j+1, j+(j+1-i)+1);
					if(m.equals(a)) {
						System.out.println("YES");
						return;
					}
				}
			}
		}
		System.out.println("NO");
	}
}
0