結果

問題 No.290 1010
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-18 23:02:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 329 ms / 5,000 ms
コード長 467 bytes
コンパイル時間 3,737 ms
コンパイル使用メモリ 74,588 KB
実行使用メモリ 45,896 KB
最終ジャッジ日時 2024-12-24 15:10:15
合計ジャッジ時間 9,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,328 KB
testcase_01 AC 147 ms
41,040 KB
testcase_02 AC 147 ms
41,492 KB
testcase_03 AC 150 ms
41,288 KB
testcase_04 AC 145 ms
41,276 KB
testcase_05 AC 147 ms
41,124 KB
testcase_06 AC 146 ms
41,392 KB
testcase_07 AC 145 ms
41,188 KB
testcase_08 AC 141 ms
40,984 KB
testcase_09 AC 153 ms
40,992 KB
testcase_10 AC 148 ms
41,340 KB
testcase_11 AC 144 ms
41,384 KB
testcase_12 AC 150 ms
41,188 KB
testcase_13 AC 144 ms
41,392 KB
testcase_14 AC 141 ms
41,300 KB
testcase_15 AC 152 ms
41,584 KB
testcase_16 AC 141 ms
40,956 KB
testcase_17 AC 143 ms
41,032 KB
testcase_18 AC 144 ms
41,240 KB
testcase_19 AC 142 ms
41,548 KB
testcase_20 AC 327 ms
45,660 KB
testcase_21 AC 326 ms
45,880 KB
testcase_22 AC 329 ms
45,872 KB
testcase_23 AC 323 ms
45,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		String s=scanner.next();
		for(int i=1;i<=n;i++) {
			for(int j=i;j+(j+1-i)<=n;j++) {
				String a=s.substring(i-1,j);
				String b=s.substring(j,j+(j+1-i));
				if(a.equals(b)) {
					System.out.println("YES");
					return;
				}
			}
		}
		System.out.println("NO");
	}
}
0