結果
問題 | No.2562 数字探しゲーム(緑以下コンver.) |
ユーザー | naut3 |
提出日時 | 2023-12-02 20:15:11 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,032 bytes |
コンパイル時間 | 12,342 ms |
コンパイル使用メモリ | 400,948 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-19 21:37:46 |
合計ジャッジ時間 | 13,127 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
warning: unnecessary parentheses around assigned value --> src/main.rs:44:20 | 44 | ans += (i + 1); | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 44 - ans += (i + 1); 44 + ans += i + 1; | warning: unused variable: `j` --> src/main.rs:42:13 | 42 | for j in 0..D[i] { | ^ help: if this is intentional, prefix it with an underscore: `_j` | = note: `#[warn(unused_variables)]` on by default
ソースコード
#![allow(non_snake_case, unused_imports, unused_must_use)] use std::io::{self, prelude::*, BufWriter, StdinLock, StdoutLock}; use std::str; fn main() { let (stdin, stdout) = (io::stdin(), io::stdout()); let mut scan = Scanner::new(stdin.lock()); let mut out = io::BufWriter::new(stdout.lock()); macro_rules! input { ($T: ty) => { scan.token::<$T>() }; ($T: ty, $N: expr) => { (0..$N).map(|_| scan.token::<$T>()).collect::<Vec<_>>() }; } let t = input!(usize); for _ in 0..t { solve(&mut scan, &mut out); } } fn solve(scan: &mut Scanner<StdinLock>, out: &mut BufWriter<StdoutLock>) { macro_rules! input { ($T: ty) => { scan.token::<$T>() }; ($T: ty, $N: expr) => { (0..$N).map(|_| scan.token::<$T>()).collect::<Vec<_>>() }; } let M = input!(usize); let D = input!(usize, 9); let mut ans = 0; for i in 0..9 { for j in 0..D[i] { ans *= 10; ans += (i + 1); } } ans *= 1_000_000_000; let rem = ans % M; ans += M - rem; writeln!(out, "{}", ans); } struct Scanner<R> { reader: R, buf_str: Vec<u8>, buf_iter: str::SplitWhitespace<'static>, } impl<R: BufRead> Scanner<R> { fn new(reader: R) -> Self { Self { reader, buf_str: vec![], buf_iter: "".split_whitespace(), } } fn token<T: str::FromStr>(&mut self) -> T { loop { if let Some(token) = self.buf_iter.next() { return token.parse().ok().expect("Failed parse"); } self.buf_str.clear(); self.reader .read_until(b'\n', &mut self.buf_str) .expect("Failed read"); self.buf_iter = unsafe { let slice = str::from_utf8_unchecked(&self.buf_str); std::mem::transmute(slice.split_whitespace()) } } } }