結果
| 問題 | No.1617 Palindrome Removal |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-07-22 22:53:34 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 94 bytes |
| 記録 | |
| コンパイル時間 | 245 ms |
| コンパイル使用メモリ | 95,976 KB |
| 実行使用メモリ | 86,912 KB |
| 最終ジャッジ日時 | 2026-08-15 20:30:41 |
| 合計ジャッジ時間 | 3,940 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / <nil> |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 17 WA * 3 |
ソースコード
s = input() print(len(s) if s != s[::-1] else len(s)-2 if any(si != s[0] for si in s) else -1)
convexineq