結果

問題 No.1700 floor X
ユーザー seinyanseinyan
提出日時 2021-10-28 16:18:19
言語 Rust
(1.77.0 + proconio)
結果
RE  
実行時間 -
コード長 365 bytes
コンパイル時間 12,271 ms
コンパイル使用メモリ 400,612 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-07 08:01:02
合計ジャッジ時間 14,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 16 ms
6,816 KB
testcase_02 AC 16 ms
6,816 KB
testcase_03 AC 16 ms
6,820 KB
testcase_04 AC 15 ms
6,816 KB
testcase_05 AC 15 ms
6,820 KB
testcase_06 AC 15 ms
6,820 KB
testcase_07 AC 15 ms
6,820 KB
testcase_08 AC 15 ms
6,816 KB
testcase_09 AC 15 ms
6,816 KB
testcase_10 AC 15 ms
6,816 KB
testcase_11 AC 15 ms
6,820 KB
testcase_12 AC 15 ms
6,816 KB
testcase_13 AC 16 ms
6,816 KB
testcase_14 AC 16 ms
6,816 KB
testcase_15 AC 15 ms
6,820 KB
testcase_16 AC 15 ms
6,816 KB
testcase_17 AC 15 ms
6,816 KB
testcase_18 AC 16 ms
6,816 KB
testcase_19 AC 15 ms
6,820 KB
testcase_20 AC 15 ms
6,820 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;

fn main() {
    let n = read_input();
    let mut v: Vec<i32> = Vec::new();

    for _i in 0..n {
        v.push(read_input());
    }
    for value in v {
        println!("{}", (value as f64).sqrt().floor());
    }
}

fn read_input() -> i32 {
    let mut s = String::new();
    io::stdin().read_line(&mut s).unwrap();
    s.trim().parse().unwrap()
}
0