結果
問題 | No.2426 Select Plus or Minus |
ユーザー | so-hey |
提出日時 | 2023-08-19 00:38:25 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,478 bytes |
コンパイル時間 | 17,841 ms |
コンパイル使用メモリ | 377,408 KB |
実行使用メモリ | 816,640 KB |
最終ジャッジ日時 | 2024-11-28 12:45:44 |
合計ジャッジ時間 | 50,007 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 7 ms
5,120 KB |
testcase_06 | AC | 1 ms
5,120 KB |
testcase_07 | AC | 1 ms
5,120 KB |
testcase_08 | AC | 1 ms
5,120 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | AC | 5 ms
5,120 KB |
testcase_12 | AC | 1 ms
5,120 KB |
testcase_13 | AC | 1 ms
5,120 KB |
testcase_14 | AC | 1 ms
5,120 KB |
testcase_15 | AC | 1 ms
5,120 KB |
testcase_16 | AC | 1 ms
5,120 KB |
testcase_17 | AC | 1 ms
5,120 KB |
testcase_18 | TLE | - |
testcase_19 | WA | - |
testcase_20 | MLE | - |
testcase_21 | TLE | - |
testcase_22 | WA | - |
testcase_23 | MLE | - |
testcase_24 | TLE | - |
testcase_25 | AC | 7 ms
6,688 KB |
testcase_26 | AC | 1 ms
6,692 KB |
testcase_27 | AC | 1 ms
6,688 KB |
testcase_28 | MLE | - |
testcase_29 | AC | 6 ms
6,688 KB |
testcase_30 | AC | 1 ms
6,688 KB |
testcase_31 | AC | 1 ms
6,692 KB |
testcase_32 | TLE | - |
testcase_33 | MLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | MLE | - |
testcase_37 | AC | 6 ms
6,692 KB |
testcase_38 | MLE | - |
testcase_39 | MLE | - |
testcase_40 | AC | 6 ms
6,688 KB |
testcase_41 | AC | 1 ms
6,692 KB |
testcase_42 | AC | 1 ms
6,692 KB |
testcase_43 | MLE | - |
ソースコード
#![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, ""); }