結果
問題 | No.642 Two Operations No.1 |
ユーザー | cympfh |
提出日時 | 2018-02-02 23:17:31 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,624 bytes |
コンパイル時間 | 11,921 ms |
コンパイル使用メモリ | 378,532 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 01:33:32 |
合計ジャッジ時間 | 12,759 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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,376 KB |
testcase_04 | AC | 0 ms
5,376 KB |
testcase_05 | AC | 0 ms
5,376 KB |
testcase_06 | AC | 0 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
warning: constant `M` is never used --> src/main.rs:26:7 | 26 | const M: usize = 1_000_007; | ^ | = note: `#[warn(dead_code)]` on by default
ソースコード
#![allow(unused_imports)] use std::io::{ self, Write }; use std::str::FromStr; use std::cmp::{ min, max }; use std::collections::{ BinaryHeap, VecDeque }; #[allow(unused_macros)] macro_rules! trace { ($var:expr) => { let _ = writeln!(&mut std::io::stderr(), ">>> {} = {:?}", stringify!($var), $var); }; ($($args:expr),*) => { trace!(($($args),*)) } } #[allow(unused_macros)] macro_rules! put { ($var:expr) => { let _ = writeln!(&mut std::io::stdout(), "{}", $var); }; ($var:expr, $($args:expr),*) => { let _ = write!(&mut std::io::stdout(), "{} ", $var); put!($($args),*); }; } const M: usize = 1_000_007; fn main() { let mut sc = Scanner::new(); let mut x: usize = sc.cin(); let mut a = 0; while x > 1 { if x % 2 == 0 { x /= 2; } else { x += 1; } a += 1; } put!(a); } #[allow(dead_code)] struct Scanner { stdin: io::Stdin, buffer: VecDeque<String>, } #[allow(dead_code)] impl Scanner { fn new() -> Scanner { Scanner { stdin: io::stdin(), buffer: VecDeque::new() } } fn reserve(&mut self) { while self.buffer.len() == 0 { let mut line = String::new(); let _ = self.stdin.read_line(&mut line); for w in line.split_whitespace() { self.buffer.push_back(String::from(w)); } } } fn cin<T: FromStr>(&mut self) -> T { self.reserve(); match self.buffer.pop_front().unwrap().parse::<T>() { Ok(a) => a, Err(_) => panic!("parse err") } } }