結果

問題 No.1700 floor X
ユーザー neko_the_shadow
提出日時 2021-10-10 01:26:41
言語 Perl
(5.40.0)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 15:48:31
合計ジャッジ時間 3,347 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 41 WA * 3
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use utf8;
use strict;
use warnings;

my $t = <>;
while ($t--) {
    print int(sqrt(<>)), "\n";
}
0