結果

問題 No.432 占い(Easy)
ユーザー Rhohei TanakaRhohei Tanaka
提出日時 2016-11-04 00:21:04
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,231 bytes
コンパイル時間 14,224 ms
コンパイル使用メモリ 399,776 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 21:45:29
合計ジャッジ時間 15,287 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 1 ms
6,812 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 0 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 0 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused macro definition: `parse_inputs`
 --> src/main.rs:7:14
  |
7 | macro_rules! parse_inputs {
  |              ^^^^^^^^^^^^
  |
  = note: `#[warn(unused_macros)]` on by default

warning: unused macro definition: `print_err`
  --> src/main.rs:11:14
   |
11 | macro_rules! print_err {
   |              ^^^^^^^^^

ソースコード

diff #

use std::io;

macro_rules! parse_input {
    ($x:expr, $t:ident) => ($x.parse::<$t>().unwrap())
}

macro_rules! parse_inputs {
    ($x:expr, $t:ident) => ($x.map(|s| s.parse::<$t>().unwrap()).collect::<Vec<$t>>())
}

macro_rules! print_err {
    ($($arg:tt)*) => (
        {
            use std::io::Write;
            writeln!(&mut ::std::io::stderr(), $($arg)*).ok();
        }
    )
}

fn main() {
    let mut input_line = String::new();
    io::stdin().read_line(&mut input_line).unwrap();
    let n = parse_input!(input_line.trim(), u64);

    for _ in 0..n {
        input_line.clear();
        io::stdin().read_line(&mut input_line).unwrap();
        let s = input_line.trim().bytes().map(|b| b - 48).collect::<Vec<u8>>();

        let mut i = s.len() - 1;
        let mut ans = s.clone();

        // for x in &ans {
        //     print!("{},", x);
        // }
        // println!("", );

        while i > 0 {
            for j in 0..i {
                ans[j] = (ans[j] + ans[j + 1]) / 10 + (ans[j] + ans[j + 1]) % 10;
            }
            // for x in &ans {
            //     print!("{},", x);
            // }
            // println!("", );
            i -= 1;
        }
        println!("{}", ans[0]);
    }
}
0