結果

問題 No.587 七対子
ユーザー atuk721atuk721
提出日時 2017-11-06 05:00:36
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 613 bytes
コンパイル時間 12,255 ms
コンパイル使用メモリ 391,660 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 05:40:31
合計ジャッジ時間 13,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

use std::io;
use std::collections::HashMap;

fn process(input: &str) -> Option<char> {
    let char_map = input.chars().fold(HashMap::new(), |mut acc, c| {
        *acc.entry(c).or_insert(0) += 1;
        acc
    });

    if char_map.len() != 7 {
        return None;
    }

    if let Some(x) = char_map.iter().find(|entry| *entry.1 == 1) {
        Some(*x.0)
    } else {
        None
    }
}

fn main() {
    let mut input = String::new();
    io::stdin().read_line(&mut input).ok();

    if let Some(x) = process(&input.trim()) {
        println!("{}", x);
    } else {
        println!("Impossible");
    }
}
0