結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー silversmithsilversmith
提出日時 2021-06-08 16:42:56
言語 Rust
(1.83.0 + proconio)
結果
MLE  
実行時間 -
コード長 1,014 bytes
コンパイル時間 13,453 ms
コンパイル使用メモリ 396,736 KB
実行使用メモリ 818,932 KB
最終ジャッジ日時 2024-11-26 19:36:03
合計ジャッジ時間 75,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 MLE -
testcase_02 AC 1 ms
13,636 KB
testcase_03 MLE -
testcase_04 AC 1 ms
13,636 KB
testcase_05 MLE -
testcase_06 AC 1 ms
12,068 KB
testcase_07 MLE -
testcase_08 WA -
testcase_09 MLE -
testcase_10 AC 1 ms
12,064 KB
testcase_11 MLE -
testcase_12 WA -
testcase_13 MLE -
testcase_14 AC 2 ms
12,068 KB
testcase_15 MLE -
testcase_16 WA -
testcase_17 MLE -
testcase_18 AC 1 ms
12,064 KB
testcase_19 MLE -
testcase_20 AC 1 ms
13,640 KB
testcase_21 MLE -
testcase_22 AC 1 ms
12,064 KB
testcase_23 AC 1 ms
499,288 KB
testcase_24 AC 1 ms
12,068 KB
testcase_25 MLE -
testcase_26 AC 1 ms
12,068 KB
testcase_27 MLE -
testcase_28 AC 1 ms
12,072 KB
testcase_29 MLE -
testcase_30 AC 1 ms
12,068 KB
testcase_31 MLE -
testcase_32 WA -
testcase_33 MLE -
testcase_34 AC 1 ms
12,068 KB
testcase_35 MLE -
testcase_36 AC 1 ms
12,064 KB
testcase_37 MLE -
testcase_38 TLE -
testcase_39 MLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `N`
  --> src/main.rs:12:6
   |
12 |     let N:i32=a[0].parse().unwrap();
   |         ^ help: if this is intentional, prefix it with an underscore: `_N`
   |
   = note: `#[warn(unused_variables)]` on by default

warning: variable `N` should have a snake case name
  --> src/main.rs:12:6
   |
12 |     let N:i32=a[0].parse().unwrap();
   |         ^ help: convert the identifier to snake case: `n`
   |
   = note: `#[warn(non_snake_case)]` on by default

warning: variable `K` should have a snake case name
  --> src/main.rs:13:6
   |
13 |     let K:i32=a[1].parse().unwrap();
   |         ^ help: convert the identifier to snake case (notice the capitalization): `k`

warning: variable `A` should have a snake case name
  --> src/main.rs:15:6
   |
15 |     let A:Vec<_>=s.trim().split(' ').collect();
   |         ^ help: convert the identifier to snake case: `a`

warning: variable `A` should have a snake case name
  --> src/main.rs:16:6
   |
16 |     let A:Vec<i32>=A.iter().map(|a| a.parse().unwrap()).collect();
   |         ^ help: convert the identifier to snake case: `a`

ソースコード

diff #

use std::collections::HashSet;

fn getline() -> String{
	let mut __ret=String::new();
	std::io::stdin().read_line(&mut __ret).ok();
	return __ret;
}

fn main() {
	let s=getline();
	let a:Vec<_>=s.trim().split(' ').collect();
	let N:i32=a[0].parse().unwrap();
	let K:i32=a[1].parse().unwrap();
	let s=getline();
	let A:Vec<_>=s.trim().split(' ').collect();
	let A:Vec<i32>=A.iter().map(|a| a.parse().unwrap()).collect();

	let mut expression = Vec::new();
	for i in 0..1 << A.len() {
		let mut select = Vec::new();
		for j in 0..A.len() {
			if (1 << j) & i == 0 {
				select.push(A[j]);
			}
		}
		if select.len() == 0{
			continue;
		}
		for sig in 0..1 << (select.len()-1) {
			let mut k = select[0];
			for l in 0..(select.len()-1) {
				if (1 << l) & sig == 0 {
					k = k - select[l + 1];
				}else{
					k = -k + select[l + 1];
				}
			}
			expression.push(k)
		}
	}
	let expression: HashSet<i32> = expression.into_iter().collect();
	if expression.contains(&K){
		print!("Yes");
	}else{
		print!("No");
	}
}
0