結果
| 問題 | No.739 大事なことなので2度言います |
| コンテスト | |
| ユーザー |
bellangeldindon
|
| 提出日時 | 2019-05-08 17:25:54 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
AC
|
| 実行時間 | 50 ms / 2,000 ms |
| + 693µs | |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 57 ms |
| コンパイル使用メモリ | 81,176 KB |
| 実行使用メモリ | 81,152 KB |
| 最終ジャッジ日時 | 2026-07-18 19:12:47 |
| 合計ジャッジ時間 | 1,750 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 7 |
ソースコード
def judge(s): if len(s) % 2 == 1: return 'NO' for i in range(0, len(s)/2): if s[i] != s[i+len(s)/2]: return 'NO' return 'YES' print judge(raw_input())
bellangeldindon