use std::collections::HashMap; fn main() { input! { a: [usize; 5] } let mut three = 0; let mut two = 0; let mut h = HashMap::new(); for i in a { let count = h.entry(i).or_insert(0); *count += 1; } for (_, v) in h { match v { 2 => two += 1, 3 => three += 1, _ => (), }; } match (two, three) { (1, 1) => println!("FULL HOUSE"), (0, 1) => println!("THREE CARD"), (2, 0) => println!("TWO PAIR"), (1, 0) => println!("ONE PAIR"), _ => println!("NO HAND"), } } #[macro_export] macro_rules! input{ (sc=$sc:expr,$($r:tt)*)=>{ input_inner!{$sc,$($r)*} }; ($($r:tt)*)=>{ let mut sc=self::Scanner::new(std::io::stdin().lock()); input_inner!{sc,$($r)*} }; } #[macro_export] macro_rules! input_inner{ ($sc:expr)=>{}; ($sc:expr,)=>{}; ($sc:expr,$var:ident:$t:tt$($r:tt)*)=>{ let $var=read_value!($sc,$t); input_inner!{$sc $($r)*} }; } #[macro_export] macro_rules! read_value{ ($sc:expr,($($t:tt),*))=>{ ($(read_value!($sc,$t)),*) }; ($sc:expr,[$t:tt;$len:expr])=>{ (0..$len).map(|_|read_value!($sc,$t)).collect::>() }; ($sc:expr,Chars)=>{read_value!($sc,String).chars().collect::>()}; ($sc:expr,Usize1)=>{read_value!($sc,usize)-1}; ($sc:expr,$t:ty)=>{$sc.nextsc::<$t>()}; } pub struct Scanner { s: Box, input: std::iter::Peekable>, } impl Scanner { pub fn new(mut reader: R) -> Self { let s = { let mut s = String::new(); reader.read_to_string(&mut s).unwrap(); s.into_boxed_str() }; let mut sc = Scanner { s, input: "".split_ascii_whitespace().peekable(), }; use std::mem; let s: &'static str = unsafe { mem::transmute(&*sc.s) }; sc.input = s.split_ascii_whitespace().peekable(); sc } #[inline] pub fn nextsc(&mut self) -> T where T::Err: std::fmt::Debug, { self.input .next() .unwrap_or_default() .parse::() .expect("Parse error") } }