結果
問題 | No.2426 Select Plus or Minus |
ユーザー | so-hey |
提出日時 | 2023-08-19 00:38:25 |
言語 | Rust (1.77.0 + proconio) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,478 bytes |
コンパイル時間 | 16,928 ms |
コンパイル使用メモリ | 379,372 KB |
実行使用メモリ | 801,152 KB |
最終ジャッジ日時 | 2024-05-06 07:37:50 |
合計ジャッジ時間 | 18,025 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#![allow(dead_code)] #![allow(unused_imports)] #![allow(non_snake_case)] #![allow(unused_variables)] pub mod scanner { pub struct Scanner { buf: Vec<String>, } impl Scanner { pub fn new() -> Self { Self { buf: vec![] } } pub fn new_from(source: &str) -> Self { let source = String::from(source); let buf = Self::split(source); Self { buf } } pub fn next<T: std::str::FromStr>(&mut self) -> T { loop { if let Some(x) = self.buf.pop() { return x.parse().ok().expect(""); } let mut source = String::new(); std::io::stdin().read_line(&mut source).expect(""); self.buf = Self::split(source); } } fn split(source: String) -> Vec<String> { source .split_whitespace() .rev() .map(String::from) .collect::<Vec<_>>() } } } use crate::scanner::Scanner; use std::collections::*; const UINF: usize = std::usize::MAX; const IINF: isize = std::isize::MAX; const UMOD: usize = 998244353; //const UMOD: usize = 1000000007; const IMOD: isize = 998244353; //const IMOD: isize = 1000000007; fn yn(flag: bool) { if flag { println!("Yes") } else { println!("No") } } fn YN(flag: bool) { if flag { println!("YES") } else { println!("NO") } } fn print_vec<T: std::fmt::Display>(a: &Vec<T>, sep: &str) { if a.is_empty() { println!("") } else { let dst: Vec<String> = a.iter().map(|x| x.to_string()).collect(); println!("{}", dst.join(sep)); } } fn main() { let mut scanner = Scanner::new(); let t = 1; for _ in 0..t { solve(&mut scanner); } } fn solve(scanner: &mut Scanner) { let mut p = HashSet::new(); for i in 1..=60 { p.insert(2_usize.pow(i)); } let mut n: usize = scanner.next(); let mut ans = Vec::new(); while n > 1 { if n > 1e18 as usize { println!("ng"); } if n % 2 == 0 { n /= 2; ans.push('/'); } else { if p.contains(&(3*n+1)) { n = 3 * n + 1; ans.push('+'); } else { n = 3 * n - 1; ans.push('-'); } } } println!("{}", ans.len()); print_vec(&ans, ""); }