結果

問題 No.1468 Colourful Pastel
ユーザー kenichikenichi
提出日時 2023-12-02 10:47:14
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 21 ms / 1,000 ms
コード長 1,823 bytes
コンパイル時間 14,125 ms
コンパイル使用メモリ 379,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 16:26:17
合計ジャッジ時間 14,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
5,248 KB
testcase_01 AC 21 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::*;
use std::str::FromStr;

fn main() {
    let n: usize = read();
    let mut color_1 = [0; 7];
    let mut color_2 = [0; 7];
    let pastel_color: [&str; 7] = ["Red","Orange","Yellow","Green","Cyan","Blue","Violet"];
    for _i in 0..n{
        let pastel: String = read();
        if pastel == "Red"{
            color_1[0] += 1;
        }
        if pastel == "Orange"{
            color_1[1] += 1;
        }
        if pastel == "Yellow"{
            color_1[2] += 1;
        }
        if pastel == "Green"{
            color_1[3] += 1;
        }
        if pastel == "Cyan"{
            color_1[4] += 1;
        }
        if pastel == "Blue"{
            color_1[5] += 1;
        }
        if pastel == "Violet"{
            color_1[6] += 1;
        }
    }

    for _i in 0..n - 1{
        let pastel: String = read();
        if pastel == "Red"{
            color_2[0] += 1;
        }
        if pastel == "Orange"{
            color_2[1] += 1;
        }
        if pastel == "Yellow"{
            color_2[2] += 1;
        }
        if pastel == "Green"{
            color_2[3] += 1;
        }
        if pastel == "Cyan"{
            color_2[4] += 1;
        }
        if pastel == "Blue"{
            color_2[5] += 1;
        }
        if pastel == "Violet"{
            color_2[6] += 1;
        }
    }
    for _i in 0..7{
        if color_1[_i] != color_2[_i]{
            print!("{}",pastel_color[_i]);
            return;
        }
    }
}

pub fn read<T: FromStr>() -> T {
    let stdin = stdin();
    let stdin = stdin.lock();
    let token: String = stdin
        .bytes()
        .map(|c| c.expect("failed to read char") as char)
        .skip_while(|c| c.is_whitespace())
        .take_while(|c| !c.is_whitespace())
        .collect();
    token.parse().ok().expect("failed to parse token")
}
0