結果
問題 | No.1492 01文字列と転倒 |
ユーザー | phspls |
提出日時 | 2023-02-07 02:19:29 |
言語 | Rust (1.77.0 + proconio) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,030 bytes |
コンパイル時間 | 19,192 ms |
コンパイル使用メモリ | 400,780 KB |
実行使用メモリ | 787,712 KB |
最終ジャッジ日時 | 2024-07-05 02:33:50 |
合計ジャッジ時間 | 26,219 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,812 KB |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,812 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,812 KB |
testcase_14 | MLE | - |
testcase_15 | AC | 4 ms
6,812 KB |
testcase_16 | AC | 17 ms
12,672 KB |
testcase_17 | MLE | - |
testcase_18 | AC | 19 ms
13,824 KB |
testcase_19 | AC | 3 ms
6,816 KB |
testcase_20 | AC | 13 ms
9,216 KB |
testcase_21 | AC | 663 ms
473,600 KB |
testcase_22 | AC | 18 ms
12,544 KB |
testcase_23 | AC | 8 ms
6,820 KB |
コンパイルメッセージ
warning: unused variable: `i` --> src/main.rs:31:9 | 31 | for i in limit+1..=n*n { | ^ help: if this is intentional, prefix it with an underscore: `_i` | = note: `#[warn(unused_variables)]` on by default warning: variable `MOD` should have a snake case name --> src/main.rs:7:9 | 7 | let MOD = nm[1]; | ^^^ | = note: `#[warn(non_snake_case)]` on by default help: rename the identifier or convert it to a snake case raw identifier | 7 | let r#mod = nm[1]; | ~~~~~
ソースコード
fn main() { let mut nm = String::new(); std::io::stdin().read_line(&mut nm).ok(); let nm: Vec<usize> = nm.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let n = nm[0]; let MOD = nm[1]; let limit = n * (n-1) / 2; let mut dp = vec![vec![vec![0usize; limit+1]; n+1]; 2*n+1]; dp[1][0][0] = 1; for i in 1..2*n { for j in 0..=n { for cnt in 0..=limit { if dp[i][j][cnt] == 0 { continue; } dp[i+1][j][cnt] += dp[i][j][cnt]; dp[i+1][j][cnt] %= MOD; if j < n && (i+1)/2 >= j+1 { let zero_used = i - j; if cnt+n >= zero_used { dp[i+1][j+1][cnt+n-zero_used] += dp[i][j][cnt]; dp[i+1][j+1][cnt+n-zero_used] %= MOD; } } } } } for i in 0..=limit { println!("{}", dp[2*n][n][i]); } for i in limit+1..=n*n { println!("0"); } }