結果

問題 No.1617 Palindrome Removal
ユーザー simansiman
提出日時 2021-07-25 07:36:18
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 330 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-07-20 15:09:56
合計ジャッジ時間 6,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 250 ms
14,848 KB
testcase_01 AC 250 ms
15,232 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 278 ms
15,232 KB
testcase_05 AC 224 ms
14,336 KB
testcase_06 AC 86 ms
14,720 KB
testcase_07 AC 90 ms
13,568 KB
testcase_08 AC 80 ms
12,288 KB
testcase_09 AC 80 ms
12,288 KB
testcase_10 AC 249 ms
14,976 KB
testcase_11 AC 221 ms
14,464 KB
testcase_12 AC 262 ms
15,232 KB
testcase_13 AC 256 ms
15,104 KB
testcase_14 AC 79 ms
12,288 KB
testcase_15 AC 75 ms
12,032 KB
testcase_16 AC 78 ms
12,032 KB
testcase_17 AC 78 ms
12,288 KB
testcase_18 AC 80 ms
12,288 KB
testcase_19 AC 79 ms
12,288 KB
testcase_20 AC 80 ms
12,160 KB
testcase_21 AC 81 ms
12,160 KB
testcase_22 AC 76 ms
12,032 KB
testcase_23 AC 78 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:11: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:30: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

S = gets.chomp
N = S.size
M = N / 2

if S != S.reverse
  puts N
  exit
end

if S.size == 1
  puts -1
  exit
end

counter = Hash.new(0)

M.times do |i|
  s = S[i]
  counter[s] += 1
end

if N.even?
  if counter.size == 1
    puts 0
  else
    puts N - 2
  end
else
  if counter.size == 1
    puts -1
  else
    puts N - 2
  end
end
0