結果

問題 No.290 1010
ユーザー fjafjafjafjafjafja
提出日時 2017-09-19 18:14:14
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 590 bytes
コンパイル時間 4,301 ms
コンパイル使用メモリ 73,740 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-11-08 05:40:00
合計ジャッジ時間 6,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,720 KB
testcase_01 AC 54 ms
36,956 KB
testcase_02 AC 53 ms
36,504 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 54 ms
36,808 KB
testcase_06 AC 52 ms
37,052 KB
testcase_07 AC 54 ms
36,848 KB
testcase_08 AC 52 ms
36,488 KB
testcase_09 AC 53 ms
36,976 KB
testcase_10 AC 53 ms
36,836 KB
testcase_11 AC 52 ms
36,988 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 53 ms
36,952 KB
testcase_15 AC 51 ms
36,488 KB
testcase_16 AC 53 ms
36,496 KB
testcase_17 AC 53 ms
36,508 KB
testcase_18 AC 53 ms
36,528 KB
testcase_19 AC 52 ms
36,628 KB
testcase_20 AC 140 ms
41,544 KB
testcase_21 AC 135 ms
41,432 KB
testcase_22 AC 127 ms
41,324 KB
testcase_23 AC 138 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class N290
{
	public static void main(String[] args) throws IOException
	{
		BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
		int l=Integer.parseInt(br.readLine());
		String str=br.readLine();
		int end=0;
		for(int i=1;end==0&&i<=l;i++)
		{
			for(int j=i;end==0&&j+1<=l&&j+(j+1-i)<=l;j++)
			{
				if(str.substring(i-1, j-1).equals(str.substring(j,j+(j-i))))
				{end++;}
			}
		}
		if(end==1){System.out.println("YES");}
		else{System.out.println("NO");}
	}

}
0