結果

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

ソースコード

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