結果

問題 No.2706 One Nafmo
ユーザー Haniwa
提出日時 2025-09-25 21:12:42
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 25,711 ms
コンパイル使用メモリ 396,528 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-09-25 21:13:10
合計ジャッジ時間 12,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use proconio::input;

#[allow(unused)]
fn main() {
    input! {
        a: usize,
        b: usize,
        x: usize,
    }


    println!("{}", (a + x - 1) / a * b);
}
0