結果

問題 No.1617 Palindrome Removal
ユーザー yuruhiyayuruhiya
提出日時 2021-08-19 16:04:12
言語 Crystal
(1.11.2)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 108 bytes
コンパイル時間 15,346 ms
コンパイル使用メモリ 299,360 KB
実行使用メモリ 27,528 KB
最終ジャッジ日時 2024-10-12 16:10:50
合計ジャッジ時間 17,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,832 KB
testcase_01 AC 26 ms
25,048 KB
testcase_02 AC 27 ms
25,856 KB
testcase_03 AC 26 ms
25,856 KB
testcase_04 AC 38 ms
26,240 KB
testcase_05 AC 25 ms
25,088 KB
testcase_06 AC 27 ms
25,984 KB
testcase_07 AC 20 ms
24,136 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 27 ms
27,528 KB
testcase_11 AC 24 ms
25,088 KB
testcase_12 AC 26 ms
25,984 KB
testcase_13 AC 28 ms
25,984 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = read_line
n = s.size
puts s.chars.uniq.size == 1 ? 0 - n % 2 : s == s.reverse ? n == 3 ? -1 : n - 2 : n
0