結果

問題 No.1617 Palindrome Removal
ユーザー yuruhiyayuruhiya
提出日時 2021-07-22 21:28:26
言語 Crystal
(1.14.0)
結果
WA  
実行時間 -
コード長 130 bytes
コンパイル時間 12,949 ms
コンパイル使用メモリ 299,040 KB
実行使用メモリ 26,112 KB
最終ジャッジ日時 2024-07-17 16:25:43
合計ジャッジ時間 14,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,832 KB
testcase_01 AC 27 ms
25,088 KB
testcase_02 AC 26 ms
25,848 KB
testcase_03 AC 27 ms
25,728 KB
testcase_04 AC 28 ms
26,112 KB
testcase_05 AC 24 ms
25,088 KB
testcase_06 AC 27 ms
26,112 KB
testcase_07 AC 20 ms
24,064 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 26 ms
25,720 KB
testcase_11 AC 23 ms
25,112 KB
testcase_12 AC 28 ms
26,100 KB
testcase_13 AC 27 ms
25,964 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = read_line
if s.chars.uniq.size == 1
  puts s.size.odd? ? -1 : 0
elsif s == s.reverse
  puts s.size - 2
else
  puts s.size
end
0