結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | maromi |
提出日時 | 2024-05-18 18:50:58 |
言語 | Rust (1.77.0 + proconio) |
結果 |
RE
|
実行時間 | - |
コード長 | 734 bytes |
コンパイル時間 | 14,178 ms |
コンパイル使用メモリ | 381,764 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-18 18:51:15 |
合計ジャッジ時間 | 14,202 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
use std::str::FromStr; use std::{io::*, vec}; fn main() { let n: usize = read(); let mut count = 0; let mut a = vec![0; n]; for _i in &mut a { *_i = read(); } let mut dp = vec![false; 32768]; dp[0] = true; for _ in 0..n { for _i in 0..100000 { for _j in &mut a { if dp[_i] { dp[_i ^ *_j] = true; } } } } for _i in &mut dp { if *_i { count += 1; } } println!("{}", count); } pub fn read<T: FromStr>() -> T { let stdin = stdin(); let stdin = stdin.lock(); let token: String = stdin .bytes() .map(|c| c.expect("failed to read char") as char) .skip_while(|c| c.is_whitespace()) .take_while(|c| !c.is_whitespace()) .collect(); token.parse().ok().expect("failed to parse token") }