結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,932 KB
testcase_01 AC 115 ms
53,800 KB
testcase_02 AC 114 ms
53,680 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 118 ms
54,208 KB
testcase_06 AC 124 ms
54,104 KB
testcase_07 AC 116 ms
53,980 KB
testcase_08 AC 114 ms
53,984 KB
testcase_09 RE -
testcase_10 AC 113 ms
53,816 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 114 ms
54,172 KB
testcase_15 AC 113 ms
53,884 KB
testcase_16 AC 107 ms
52,700 KB
testcase_17 AC 104 ms
53,032 KB
testcase_18 AC 113 ms
54,052 KB
testcase_19 AC 105 ms
52,940 KB
testcase_20 AC 231 ms
57,060 KB
testcase_21 AC 246 ms
56,888 KB
testcase_22 AC 249 ms
57,056 KB
testcase_23 AC 276 ms
57,044 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