Submission #1871878


Source Code Expand

use std::io::{stdin, Read, StdinLock};
use std::str::FromStr;

struct Scanner<'a> {
    stdin: StdinLock<'a>,
}

impl<'a> Scanner<'a> {
    fn new(stdin: StdinLock<'a>) -> Scanner<'a> {
        return Scanner {stdin: stdin}
    }

    fn read1<T: FromStr>(&mut self) -> Option<T> {
        let token = self.stdin.by_ref().bytes().map(|c| c.unwrap() as char)
            .skip_while(|c| c.is_whitespace())
            .take_while(|c| !c.is_whitespace())
            .collect::<String>();
        return token.parse::<T>().ok();
    }

    fn read<T: FromStr>(&mut self) -> T {
        return self.read1().unwrap()
    }
}

fn main() {
    let stdin = stdin();
    let stdin = stdin.lock();
    let mut scanner = Scanner::new(stdin);

    let n: i32 = scanner.read();

    let mut ret = 0;
    for i in 0..n {
        let b: i32 = scanner.read();
        let c = b % 6;
        if c == 1 || c == 3 {
            ret += 0;
        } else if c == 2 || c == 4 {
            ret += 1;
        } else if c == 5 {
            ret += 2;
        } else {
            ret += 3;
        }
    }

    println!("{}", ret);
}

Submission Info

Submission Time
Task B - 花占い
User yucchiy
Language Rust (1.15.1)
Score 100
Code Size 1160 Byte
Status AC
Exec Time 2 ms
Memory 4352 KB

Compile Error

warning: unused variable: `i`, #[warn(unused_variables)] on by default
  --> ./Main.rs:34:9
   |
34 |     for i in 0..n {
   |         ^

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 20
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_1.txt, test_112358.txt, test_1379137913.txt, test_1414213562.txt, test_1732151817.txt, test_2.txt, test_2236167977.txt, test_2645751311.txt, test_3.txt, test_3141592653.txt, test_4.txt, test_5.txt, test_6.txt, test_6666666666.txt, test_7.txt, test_73.txt, test_8.txt, test_9.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_112358.txt AC 2 ms 4352 KB
test_1379137913.txt AC 2 ms 4352 KB
test_1414213562.txt AC 2 ms 4352 KB
test_1732151817.txt AC 2 ms 4352 KB
test_2.txt AC 2 ms 4352 KB
test_2236167977.txt AC 2 ms 4352 KB
test_2645751311.txt AC 2 ms 4352 KB
test_3.txt AC 2 ms 4352 KB
test_3141592653.txt AC 2 ms 4352 KB
test_4.txt AC 2 ms 4352 KB
test_5.txt AC 2 ms 4352 KB
test_6.txt AC 2 ms 4352 KB
test_6666666666.txt AC 2 ms 4352 KB
test_7.txt AC 2 ms 4352 KB
test_73.txt AC 2 ms 4352 KB
test_8.txt AC 2 ms 4352 KB
test_9.txt AC 2 ms 4352 KB