結果
問題 | No.47 ポケットを叩くとビスケットが2倍 |
ユーザー | satler |
提出日時 | 2024-10-28 13:48:53 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 275 bytes |
コンパイル時間 | 15,816 ms |
コンパイル使用メモリ | 401,432 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-28 13:49:10 |
合計ジャッジ時間 | 15,835 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
コンパイルメッセージ
warning: function `yes` is never used --> src/main.rs:4:4 | 4 | fn yes(yes_no: bool) { | ^^^ | = note: `#[warn(dead_code)]` on by default
ソースコード
// (n as f64).log2() use proconio::{input, fastout}; fn yes(yes_no: bool) { if yes_no { println!("Yes"); } else { println!("No"); } } #[fastout] fn main() { input! { n: u64, } println!("{}", (n as f64).log2().ceil() as u32) }