結果

問題 No.1700 floor X
ユーザー nebukuro09nebukuro09
提出日時 2021-10-08 21:53:53
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 2,051 ms
コンパイル使用メモリ 155,720 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-04 14:22:10
合計ジャッジ時間 4,266 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop;

immutable long MOD = 998244353;

void main() {
    auto T = readln.chomp.to!int;

    while (T--) {
        auto N = readln.chomp.to!long;
        auto x = floor(sqrt(N*1.0L));
        if ((x + 1) * (x + 1) <= N) x+= 1;
        writeln(x);
    }
}
0