Submission #4014625


Source Code Expand

macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        let mut next = || { iter.next().unwrap() };
        input_inner!{next, $($r)*}
    };
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes
                .by_ref()
                .map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr, ) => {};

    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, ( $($t:tt),* )) => {
        ( $(read_value!($next, $t)),* )
    };

    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };

    ($next:expr, chars) => {
        read_value!($next, String).chars().collect::<Vec<char>>()
    };

    ($next:expr, usize1) => {
        read_value!($next, usize) - 1
    };

    ($next:expr, $t:ty) => {
        $next().parse::<$t>().expect("Parse error")
    };
}

fn main() {

    input!{
        n: i32,
    }
    let h = n / 3600;
    let m = n % 3600 / 60;
    let s = n % 3600 % 60;
    println!("{:02}:{:02}:{:02}", h, m, s);
}

Submission Info

Submission Time
Task B - 入浴時間
User dbftdiyoeywga
Language Rust (1.15.1)
Score 100
Code Size 1615 Byte
Status AC
Exec Time 2 ms
Memory 4352 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 14
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_1.txt, test_17977.txt, test_25298.txt, test_36922.txt, test_44309.txt, test_52415.txt, test_60165.txt, test_65487.txt, test_70993.txt, test_80915.txt, test_84810.txt, test_86399.txt
Case Name Status Exec Time Memory
sample_01.txt AC 2 ms 4352 KB
sample_02.txt AC 2 ms 4352 KB
test_1.txt AC 2 ms 4352 KB
test_17977.txt AC 2 ms 4352 KB
test_25298.txt AC 2 ms 4352 KB
test_36922.txt AC 2 ms 4352 KB
test_44309.txt AC 2 ms 4352 KB
test_52415.txt AC 2 ms 4352 KB
test_60165.txt AC 2 ms 4352 KB
test_65487.txt AC 2 ms 4352 KB
test_70993.txt AC 2 ms 4352 KB
test_80915.txt AC 2 ms 4352 KB
test_84810.txt AC 2 ms 4352 KB
test_86399.txt AC 2 ms 4352 KB