結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,248 KB
testcase_01 AC 105 ms
54,144 KB
testcase_02 AC 109 ms
54,384 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 104 ms
54,436 KB
testcase_06 AC 115 ms
54,224 KB
testcase_07 AC 106 ms
54,296 KB
testcase_08 AC 103 ms
54,216 KB
testcase_09 RE -
testcase_10 AC 104 ms
54,452 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 114 ms
54,392 KB
testcase_15 AC 105 ms
54,340 KB
testcase_16 AC 107 ms
54,352 KB
testcase_17 AC 105 ms
54,376 KB
testcase_18 AC 102 ms
54,132 KB
testcase_19 AC 104 ms
54,512 KB
testcase_20 AC 247 ms
58,876 KB
testcase_21 AC 246 ms
58,788 KB
testcase_22 AC 244 ms
58,688 KB
testcase_23 AC 274 ms
58,812 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 = 0; 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