結果

問題 No.4 おもりと天秤
ユーザー Maricom_tkgMaricom_tkg
提出日時 2018-11-05 00:58:35
言語 Rust
(1.72.1)
結果
AC  
実行時間 9 ms / 5,000 ms
コード長 1,044 bytes
コンパイル時間 951 ms
コンパイル使用メモリ 153,448 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-13 03:34:38
合計ジャッジ時間 1,885 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 9 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 9 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 9 ms
4,380 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 4 ms
4,380 KB
testcase_19 AC 8 ms
4,380 KB
testcase_20 AC 8 ms
4,376 KB
testcase_21 AC 7 ms
4,380 KB
testcase_22 AC 7 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn main() {
    let mut buf = String::new();
    std::io::stdin().read_to_string(&mut buf).unwrap();
    
    let mut iter = buf.split_whitespace().map(|w| w.parse::<usize>().unwrap());
    
    iter.next().unwrap();
    let weights = iter;
    
    let mut remaining: usize = weights.clone().sum();
    if remaining % 2 == 1 {
        println!("impossible");
        return
    }
    
    let half: usize = remaining / 2;
    let mut sums: Vec<usize> = vec![0];
    
    for weight in weights {
        let mut new_sums: Vec<usize> = Vec::new();
        remaining -= weight;
        
        for sum in sums.into_iter() {
            let new_sum: usize = sum + weight;
            if new_sum <= half {
                new_sums.push(new_sum);
            }
            if remaining + sum >= half {
                new_sums.push(sum);
            }
        }
        new_sums.sort();
        new_sums.dedup();
        sums = new_sums;
    }
    
    println!("{}", if sums.contains(&half) {"possible"} else {"impossible"});
}
0