結果
問題 | No.505 カードの数式2 |
ユーザー | phspls |
提出日時 | 2023-01-14 00:10:06 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 736 bytes |
コンパイル時間 | 13,222 ms |
コンパイル使用メモリ | 379,512 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 00:30:17 |
合計ジャッジ時間 | 13,882 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | RE | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | RE | - |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | RE | - |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 1 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
warning: unused import: `std::arch::x86_64::_mm_packus_epi16` --> src/main.rs:1:5 | 1 | use std::arch::x86_64::_mm_packus_epi16; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
ソースコード
use std::arch::x86_64::_mm_packus_epi16; fn main() { let mut n = String::new(); std::io::stdin().read_line(&mut n).ok(); let n: usize = n.trim().parse().unwrap(); let mut a = String::new(); std::io::stdin().read_line(&mut a).ok(); let a: Vec<isize> = a.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let mut cands = vec![a[0], a[0]]; for i in 1..n { let mut ncands = vec![]; for &v in cands.iter() { ncands.push(v + a[i]); ncands.push(v - a[i]); ncands.push(v * a[i]); ncands.push(v / a[i]); } ncands.sort(); cands = vec![ncands[0], ncands[ncands.len()-1]]; } println!("{}", cands[1]); }