結果
問題 | No.391 CODING WAR |
ユーザー | At-sushi |
提出日時 | 2020-06-02 17:00:32 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 615 bytes |
コンパイル時間 | 10,690 ms |
コンパイル使用メモリ | 403,636 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-24 03:41:25 |
合計ジャッジ時間 | 11,628 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
コンパイルメッセージ
warning: unused `Map` that must be used --> src/main.rs:19:2 | 19 | / (1..m).map(|i| { 20 | | let patterns = (m-i).pow(n); 21 | | let zeros = nfactorial(m, i) / nfactorial(i, i); 22 | | 23 | | if i % 2 == 0 {r += patterns * zeros} else {r -= patterns * zeros}; 24 | | }); | |______^ | = note: iterators are lazy and do nothing unless consumed = note: `#[warn(unused_must_use)]` on by default help: use `let _ = ...` to ignore the resulting value | 19 | let _ = (1..m).map(|i| { | +++++++
ソースコード
fn getline() -> String{ let mut __ret=String::new(); std::io::stdin().read_line(&mut __ret).ok(); return __ret; } fn nfactorial(x: u32, y: u32) -> u32 { match y { 0 => 1, _ => x * nfactorial(x-1, y-1) } } fn main(){ let s=getline(); let a:Vec<_>=s.trim().split(' ').collect(); let (n, m): (u32, u32) = (a[0].parse().unwrap(), a[1].parse().unwrap()); let mut r = m.pow(n); (1..m).map(|i| { let patterns = (m-i).pow(n); let zeros = nfactorial(m, i) / nfactorial(i, i); if i % 2 == 0 {r += patterns * zeros} else {r -= patterns * zeros}; }); print!("{} ", r); }