結果

問題 No.290 1010
ユーザー furafura
提出日時 2020-04-27 04:46:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 283 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 202,404 KB
実行使用メモリ 12,116 KB
最終ジャッジ日時 2024-11-20 14:49:07
合計ジャッジ時間 27,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,116 KB
testcase_01 AC 2 ms
12,112 KB
testcase_02 AC 2 ms
12,116 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n;
	string s; cin>>n>>s;

	bool ok=false;
	rep(i,n) for(int j=i;j+(j-i+1)<n;j++) if(s.substr(i,j-i+1)==s.substr(j+1,j-i+1)) ok=true;
	cout<<(ok?"YES":"NO")<<'\n';

	return 0;
}
0