結果

問題 No.290 1010
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 22:10:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 303 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 4,009 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 57,340 KB
最終ジャッジ日時 2024-11-22 12:35:37
合計ジャッジ時間 8,533 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,764 KB
testcase_01 AC 132 ms
53,960 KB
testcase_02 AC 134 ms
53,624 KB
testcase_03 AC 135 ms
54,148 KB
testcase_04 AC 136 ms
53,744 KB
testcase_05 AC 136 ms
53,828 KB
testcase_06 AC 133 ms
53,660 KB
testcase_07 AC 134 ms
54,080 KB
testcase_08 AC 136 ms
53,808 KB
testcase_09 AC 135 ms
54,112 KB
testcase_10 AC 132 ms
54,284 KB
testcase_11 AC 139 ms
53,856 KB
testcase_12 AC 136 ms
54,096 KB
testcase_13 AC 136 ms
53,936 KB
testcase_14 AC 132 ms
53,868 KB
testcase_15 AC 133 ms
54,104 KB
testcase_16 AC 134 ms
53,976 KB
testcase_17 AC 134 ms
54,112 KB
testcase_18 AC 137 ms
53,876 KB
testcase_19 AC 133 ms
53,764 KB
testcase_20 AC 292 ms
57,072 KB
testcase_21 AC 300 ms
57,192 KB
testcase_22 AC 303 ms
57,340 KB
testcase_23 AC 300 ms
56,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int n = sc.nextInt();
		String s = sc.next();
		for(int i = 0; i < n-1; i++){
			for(int j = i+1; j < n && 2*j-i <= n; j++){
				if(s.substring(i, j).equals(s.substring(j, 2*j-i))){
					System.out.println("YES");
					return;
				}
			}
		}
		System.out.println("NO");
	}
}
0