結果
問題 | No.809 かけ算 |
ユーザー | ikazuya0201 |
提出日時 | 2019-04-13 01:00:33 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,238 bytes |
コンパイル時間 | 14,341 ms |
コンパイル使用メモリ | 379,632 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 06:32:28 |
合計ジャッジ時間 | 15,126 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
ソースコード
#[allow(unused_imports)] use std::cmp::{Ordering}; #[allow(unused_imports)] use std::collections::{BTreeMap, BTreeSet, BinaryHeap, HashMap, HashSet, VecDeque}; #[allow(unused_imports)] use std::io::{stdin, stdout, BufWriter, Write}; #[allow(unused_imports)] use std::iter::FromIterator; #[allow(unused_macros)] macro_rules! min { ($x: expr) => ($x); ($x: expr, $($z: expr),+) => {{ std::cmp::min($x, min!($($z),*)) }} } #[allow(unused_macros)] macro_rules! max { ($x: expr) => ($x); ($x: expr, $($z: expr),+) => {{ std::cmp::max($x, max!($($z),*)) }} } #[allow(unused_macros)] macro_rules! get { ([$t: ty]) => { { let mut line = String::new(); stdin().read_line(&mut line).unwrap(); line.split_whitespace().map(|t|t.parse::<$t>().unwrap()).collect::<Vec<_>>() } }; ([$t: ty];$n: expr) => { (0..$n).map(|_|get!([$t])).collect::<Vec<_>>() }; ($t: ty) => { { let mut line = String::new(); stdin().read_line(&mut line).unwrap(); line.trim().parse::<$t>().unwrap() } }; ($($t: ty),*) => { { let mut line = String::new(); stdin().read_line(&mut line).unwrap(); let mut iter = line.split_whitespace(); ($(iter.next().unwrap().parse::<$t>().unwrap(),)*) } }; ($t: ty; $n: expr) => { (0..$n).map(|_|get!($t)).collect::<Vec<_>>() }; ($($t: ty),*; $n: expr) => { (0..$n).map(|_|get!($($t),*)).collect::<Vec<_>>() }; } #[allow(unused_macros)] macro_rules! debug { ($($a:expr),*) => { #[cfg(debug_assertions)] writeln!(&mut std::io::stderr(), concat!("[DEBUG] ", $(stringify!($a), "={:?} "),*), $($a),*).unwrap(); } } const BIG_STACK_SIZE: bool = true; #[allow(dead_code)] fn main() { use std::thread; if BIG_STACK_SIZE { thread::Builder::new() .stack_size(32 * 1024 * 1024) .name("solve".into()) .spawn(solve) .unwrap() .join() .unwrap(); } else { solve(); } } fn solve() { let c = get!(usize); println!("1 {}", c); }