結果
| 問題 | No.739 大事なことなので2度言います | 
| コンテスト | |
| ユーザー |  Imperi_Night | 
| 提出日時 | 2018-10-05 21:30:37 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 951 bytes | 
| コンパイル時間 | 1,070 ms | 
| コンパイル使用メモリ | 72,168 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-20 16:37:40 | 
| 合計ジャッジ時間 | 1,276 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 4 | 
| other | AC * 7 | 
ソースコード
#include <cstdio>
#include <vector>
#include <map>
#include <algorithm>
#include <cmath>
#include <iostream>
#include <string>
#include <set>
#include <limits.h>
#include <queue>
#define rep(i,N) for(int (i)=0;(i)<(N);(i)++)
#define MOD 1000000007
using ll = long long;
using namespace std;
ll pow_mod(ll a, ll b, ll p) {
	if (b == 0)return 1;
	else if (b % 2 == 0)return (pow_mod(a*a, b / 2, p) % p);
	else return (pow_mod(a, b - 1, p)*a%p);
}
ll sum_digit(ll N) {
	int ans = 0;
	for (; N != 0;) {
		ans += N % 10;
		N /= 10;
	}
	return ans;
}
ll gcd(ll a,ll b) {
	if (!b)return a;
	return gcd(b, a%b);
}
ll lcm(ll a, ll b) {
	ll g = gcd(a, b);
	return a / g * b;
}
string s;
int main(){
	cin >> s;
	int n = s.size();
	if (!(n % 2)) {
		bool flag = false;
		for (int i = 0; i < n / 2; i++) {
			if (s[i] != s[i + n / 2])flag = true;
		}
		if (flag)cout << "NO";
		else cout << "YES";
	}
	else {
		cout << "NO";
	}
	cout << "\n";
	return 0;
}
            
            
            
        