結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー | stmtk_01 |
提出日時 | 2020-04-14 15:46:34 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 961 bytes |
コンパイル時間 | 13,233 ms |
コンパイル使用メモリ | 378,336 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 17:02:08 |
合計ジャッジ時間 | 13,236 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
ソースコード
use std::io::*; use std::str::FromStr; fn read<T: FromStr>() -> T { let stdin = stdin(); let stdin = stdin.lock(); let token: String = stdin .bytes() .map(|c| c.expect("failed to read char") as char) .skip_while(|c| c.is_whitespace()) .take_while(|c| !c.is_whitespace()) .collect(); token.parse().ok().expect("failed to parse token") } fn main() { let n: usize = read(); let m: usize = read(); let op: char = read::<String>().chars().collect::<Vec<char>>()[0]; let b: Vec<u64> = (0..m).into_iter().map(|_| read()).collect(); let a: Vec<u64> = (0..m).into_iter().map(|_| read()).collect(); let c = |a: u64, b: u64| -> u64 { if op == '*' { a * b} else { a + b}}; for i in 0..n { for j in 0..m { if j == m - 1 { println!("{}", c(a[i], b[j])); } else { print!("{}", c(a[i], b[j])); } } } }