結果

問題 No.739 大事なことなので2度言います
ユーザー tnodino
提出日時 2020-07-11 04:12:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 122 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-10-12 04:34:57
合計ジャッジ時間 982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 6 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s) // 2

for i in range(n):
    if s[i] != s[n + i]:
        print('NO')
        exit(0)

print('YES')
0