結果

問題 No.739 大事なことなので2度言います
ユーザー reforefo2reforefo2
提出日時 2020-05-07 15:42:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 184 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-03 09:25:45
合計ジャッジ時間 868 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 2
other AC * 5 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
result = "YES"
if len(N)%2 == 1:
    result = "No"
else:
    for i in range(int(len(N)/2)):
        if N[i] != N[int(len(N)/2) + i]:
            result = "NO"
print(result)
0