結果

問題 No.290 1010
ユーザー tsunabittsunabit
提出日時 2020-03-25 14:34:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 4,128 ms
コンパイル使用メモリ 74,548 KB
実行使用メモリ 57,184 KB
最終ジャッジ日時 2024-06-10 11:45:38
合計ジャッジ時間 8,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,016 KB
testcase_01 AC 108 ms
53,860 KB
testcase_02 AC 99 ms
52,564 KB
testcase_03 AC 113 ms
53,984 KB
testcase_04 AC 110 ms
54,184 KB
testcase_05 AC 109 ms
53,992 KB
testcase_06 AC 100 ms
52,920 KB
testcase_07 AC 112 ms
53,924 KB
testcase_08 AC 104 ms
52,576 KB
testcase_09 AC 117 ms
53,844 KB
testcase_10 AC 106 ms
52,740 KB
testcase_11 AC 109 ms
53,720 KB
testcase_12 AC 112 ms
54,024 KB
testcase_13 AC 95 ms
52,540 KB
testcase_14 AC 115 ms
53,588 KB
testcase_15 AC 103 ms
53,532 KB
testcase_16 AC 116 ms
53,884 KB
testcase_17 AC 109 ms
54,148 KB
testcase_18 AC 97 ms
52,928 KB
testcase_19 AC 101 ms
53,788 KB
testcase_20 AC 251 ms
57,184 KB
testcase_21 AC 256 ms
57,072 KB
testcase_22 AC 237 ms
57,044 KB
testcase_23 AC 261 ms
57,120 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