結果
問題 | No.1617 Palindrome Removal |
ユーザー |
👑 ![]() |
提出日時 | 2021-07-22 21:24:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 311 bytes |
コンパイル時間 | 250 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 106,432 KB |
最終ジャッジ日時 | 2024-07-17 16:15:05 |
合計ジャッジ時間 | 2,955 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 18 WA * 2 |
ソースコード
S = list(input())N = len(S)s = set(S)if len(s) == 1:if len(S) % 2 == 1:print (-1)else:print (0)else:flag = Truefor i in range(N):if S[i] != S[len(S)-1-i]:flag = Falseif not flag:print (len(S))else:print (len(S)-2)