結果

問題 No.3037 トグルトグルトグル!
ユーザー The_Bouningeeeen
提出日時 2025-02-28 22:20:12
言語 Rust
(1.83.0 + proconio)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 111 bytes
コンパイル時間 12,094 ms
コンパイル使用メモリ 386,824 KB
実行使用メモリ 8,608 KB
最終ジャッジ日時 2025-03-07 08:48:08
合計ジャッジ時間 12,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        n: f64,
    }

    println!("{}", n.sqrt() as usize);
}
0