結果
| 問題 | No.1617 Palindrome Removal |
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2021-07-22 21:26:01 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 117 bytes |
| 記録 | |
| コンパイル時間 | 222 ms |
| コンパイル使用メモリ | 95,336 KB |
| 実行使用メモリ | 110,564 KB |
| 最終ジャッジ日時 | 2026-08-15 17:27:11 |
| 合計ジャッジ時間 | 3,949 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 18 WA * 2 |
ソースコード
s = input() n = len(s) ans = n if s != s[::-1] else n - 2 if len(set(s)) >= 2 else 0 if n % 2 == 0 else -1 print(ans)
Kude