結果
問題 | No.10 +か×か |
ユーザー | ooaiu |
提出日時 | 2024-11-13 16:14:38 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 19 ms / 5,000 ms |
コード長 | 769 bytes |
コンパイル時間 | 12,686 ms |
コンパイル使用メモリ | 404,304 KB |
実行使用メモリ | 6,912 KB |
最終ジャッジ日時 | 2024-11-13 16:14:53 |
合計ジャッジ時間 | 13,993 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 19 ms
6,912 KB |
testcase_04 | AC | 14 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 19 ms
6,820 KB |
testcase_07 | AC | 13 ms
6,816 KB |
testcase_08 | AC | 5 ms
6,816 KB |
testcase_09 | AC | 7 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
ソースコード
use proconio::input; fn main() { input! { n: usize, tot: usize, a: [usize; n] } let mut dp = vec![vec![false; tot + 1]; n + 1]; dp[n][tot] = true; for i in (0..n).rev() { for j in 0..=tot { if j + a[i] <= tot && dp[i + 1][j + a[i]] { dp[i][j] = true; } if j * a[i] <= tot && dp[i + 1][j * a[i]] { dp[i][j] = true; } } } let mut cur = a[0]; let mut ans: String = String::new(); for i in 1..n { if cur + a[i] <= tot && dp[i + 1][cur + a[i]] { cur += a[i]; ans.push('+'); }else { cur *= a[i]; ans.push('*'); } } println!("{}", ans); }