結果

問題 No.588 空白と回文
ユーザー ducktailducktail
提出日時 2017-12-31 22:08:11
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-06-01 10:11:16
合計ジャッジ時間 2,992 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
15,872 KB
testcase_01 AC 25 ms
15,872 KB
testcase_02 AC 25 ms
15,872 KB
testcase_03 AC 190 ms
15,872 KB
testcase_04 AC 25 ms
15,872 KB
testcase_05 AC 24 ms
15,872 KB
testcase_06 AC 25 ms
16,000 KB
testcase_07 AC 26 ms
15,872 KB
testcase_08 AC 26 ms
15,872 KB
testcase_09 AC 25 ms
16,000 KB
testcase_10 AC 24 ms
15,872 KB
testcase_11 AC 189 ms
16,000 KB
testcase_12 AC 184 ms
15,872 KB
testcase_13 AC 25 ms
16,000 KB
testcase_14 AC 25 ms
16,000 KB
testcase_15 AC 25 ms
16,000 KB
testcase_16 AC 25 ms
15,744 KB
testcase_17 AC 128 ms
16,000 KB
testcase_18 AC 26 ms
15,872 KB
testcase_19 AC 24 ms
15,872 KB
testcase_20 AC 189 ms
16,000 KB
testcase_21 AC 157 ms
15,744 KB
testcase_22 AC 185 ms
15,872 KB
testcase_23 AC 119 ms
15,872 KB
testcase_24 AC 25 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (same-character s l r)
  (let loop ([c 0]
             [i l]
             [j (- r 1)])
    (cond [(= i r) c]
          [(char=? (string-ref s i) (string-ref s j)) (loop (+ c 1) (+ i 1) (- j 1))]
          [else (loop c (+ i 1) (- j 1))])))

(define (main args)
  (let* ([s (read-line)]
         [sl (string-length s)])
    (print
     (let loop ([l 0]
                [r 1]
                [mx 0])
       (cond [(= l sl) mx]
             [(= r sl) (loop (+ l 1) r (max mx (same-character s l r)))]
             [else (loop l (+ r 1) (max mx (same-character s l r)))]))))
  0)
0