結果

問題 No.588 空白と回文
ユーザー phsplsphspls
提出日時 2020-05-08 22:26:12
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 548 bytes
コンパイル時間 14,495 ms
コンパイル使用メモリ 401,484 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 00:55:52
合計ジャッジ時間 16,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 WA -
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 0 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 1 ms
6,940 KB
testcase_15 WA -
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp::max;

fn main() {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    let s: Vec<char> = s.trim().chars().collect();

    let mut result: usize = 1;
    for idx in 0..s.len() {
        let mut width = 1;
        let mut val = 0;
        while idx >= width && idx + width < s.len() {
            if s[idx - width] == s[idx + width] && s[idx - width] != ' ' {
                val += 2;
            }
            width += 1;
        }
        result = max(result, val + 1);
    }
    println!("{}", result);
}
0