結果
問題 |
No.1468 Colourful Pastel
|
ユーザー |
![]() |
提出日時 | 2023-12-02 10:47:14 |
言語 | Rust (1.83.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
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") }