結果

問題 No.2071 Shift and OR
ユーザー zeronosu77108zeronosu77108
提出日時 2022-09-16 21:55:27
言語 Rust
(1.83.0 + proconio)
結果
TLE  
実行時間 -
コード長 2,682 bytes
コンパイル時間 13,787 ms
コンパイル使用メモリ 405,588 KB
実行使用メモリ 14,392 KB
最終ジャッジ日時 2024-12-21 19:38:32
合計ジャッジ時間 59,227 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
7,040 KB
testcase_02 AC 5 ms
10,496 KB
testcase_03 AC 995 ms
7,040 KB
testcase_04 AC 64 ms
7,168 KB
testcase_05 TLE -
testcase_06 AC 62 ms
10,496 KB
testcase_07 AC 5 ms
7,168 KB
testcase_08 AC 63 ms
6,912 KB
testcase_09 AC 63 ms
8,612 KB
testcase_10 AC 61 ms
10,496 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1 ms
10,496 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1 ms
10,496 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 24 ms
13,344 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 11 ms
7,240 KB
testcase_26 AC 13 ms
8,276 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 26 ms
14,392 KB
testcase_29 AC 23 ms
14,260 KB
testcase_30 AC 983 ms
5,248 KB
testcase_31 AC 982 ms
5,248 KB
testcase_32 AC 965 ms
5,248 KB
testcase_33 AC 949 ms
5,248 KB
testcase_34 AC 947 ms
5,248 KB
testcase_35 AC 952 ms
5,248 KB
testcase_36 AC 966 ms
5,248 KB
testcase_37 AC 964 ms
5,248 KB
testcase_38 AC 974 ms
5,248 KB
testcase_39 AC 965 ms
7,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused import: `std::collections::HashMap`
 --> src/main.rs:1:5
  |
1 | use std::collections::HashMap;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

warning: unused import: `proconio::marker::Usize1`
 --> src/main.rs:2:5
  |
2 | use proconio::marker::Usize1;
  |     ^^^^^^^^^^^^^^^^^^^^^^^^

warning: variable does not need to be mutable
 --> src/main.rs:7:9
  |
7 |     let mut a = sc.vec(n);
  |         ----^
  |         |
  |         help: remove this `mut`
  |
  = note: `#[warn(unused_mut)]` on by default

ソースコード

diff #

use std::collections::HashMap;
use proconio::marker::Usize1;

fn main() {
    let mut sc = Scanner::new();
    let n = sc.usize();
    let mut a = sc.vec(n);

    if n > 15 { println!("65535"); return; }

    let ans = f(0, n, 0, &a);
    println!("{}", ans);
}

fn f(i:usize, n:usize, x:usize, a:&Vec<usize>) -> usize {
    if i == n { return x; }

    let mut res = 0;
    let mut t = a[i];
    for _ in 0..16 {
        res = res.max(f(i+1, n, x | t, a));
        t = t/2 + (1<<15) * (t % 2);
    }
    res
}


struct Scanner { s : std::collections::VecDeque<String> } #[allow(unused)] impl Scanner { fn new() -> Self { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); Self { s : s.split_whitespace().map(|s| s.to_string()).collect() } } fn reload(&mut self) -> () { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); self.s = s.split_whitespace().map(|s| s.to_string()).collect(); } fn usize(&mut self) -> usize { self.input() } fn usize1(&mut self) -> usize { self.input::<usize>() - 1 } fn isize(&mut self) -> isize { self.input() } fn i32(&mut self) -> i32 { self.input() } fn i64(&mut self) -> i64 { self.input() } fn i128(&mut self) -> i128 { self.input() } fn u8(&mut self) -> u8 { self.input() } fn u32(&mut self) -> u32 { self.input() } fn u64(&mut self) -> u64 { self.input() } fn u128(&mut self) -> u128 { self.input() } fn edge(&mut self) -> (usize, usize) { (self.usize1(), self.usize1()) } fn edges(&mut self, m : usize) -> Vec<(usize, usize)> { let mut e = Vec::with_capacity(m); for _ in 0..m { e.push(self.edge()); } e } fn wedge<T:std::str::FromStr>(&mut self) -> (usize, usize, T) { (self.usize1(), self.usize1(), self.input()) } fn wedges<T:std::str::FromStr>(&mut self, m : usize) -> Vec<(usize, usize, T)> { let mut e = Vec::with_capacity(m); for _ in 0..m { e.push(self.wedge()); } e } fn input<T>(&mut self) -> T where T: std::str::FromStr { if self.s.is_empty() { self.reload(); } if let Some(head) = self.s.pop_front() { head.parse::<T>().ok().unwrap() } else { panic!() } } fn tuple<T, U>(&mut self) -> (T, U) where T: std::str::FromStr, U: std::str::FromStr { (self.input(), self.input()) } fn vec<T>(&mut self, n: usize) -> Vec<T> where T: std::str::FromStr { if self.s.is_empty() { self.reload(); } self.s.drain(..n).map(|s| s.parse::<T>().ok().unwrap() ).collect::<Vec<T>>() } fn nvec<T>(&mut self) -> Vec<T> where T: std::str::FromStr { let n : usize = self.input(); self.vec(n) } fn chars(&mut self) -> Vec<char> { let s : String = self.input(); s.chars().collect() } fn bytes(&mut self) -> Vec<u8> { let s : String = self.input(); s.bytes().collect() } }
0