結果

問題 No.2420 Simple Problem
ユーザー emoanyemoany
提出日時 2023-08-12 15:27:25
言語 Perl
(5.38.2)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-11-20 02:20:25
合計ジャッジ時間 15,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,424 KB
testcase_01 AC 182 ms
7,424 KB
testcase_02 AC 18 ms
7,424 KB
testcase_03 AC 77 ms
7,424 KB
testcase_04 AC 337 ms
7,424 KB
testcase_05 AC 221 ms
7,424 KB
testcase_06 AC 420 ms
7,424 KB
testcase_07 AC 418 ms
7,424 KB
testcase_08 AC 419 ms
7,424 KB
testcase_09 AC 418 ms
7,424 KB
testcase_10 AC 420 ms
7,296 KB
testcase_11 AC 420 ms
7,424 KB
testcase_12 AC 418 ms
7,424 KB
testcase_13 AC 416 ms
7,424 KB
testcase_14 AC 423 ms
7,552 KB
testcase_15 AC 419 ms
7,424 KB
testcase_16 AC 416 ms
7,296 KB
testcase_17 AC 419 ms
7,424 KB
testcase_18 AC 417 ms
7,424 KB
testcase_19 AC 416 ms
7,424 KB
testcase_20 AC 418 ms
7,424 KB
testcase_21 AC 420 ms
7,424 KB
testcase_22 AC 420 ms
7,424 KB
testcase_23 AC 417 ms
7,296 KB
testcase_24 AC 418 ms
7,424 KB
testcase_25 AC 418 ms
7,424 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 17 ms
7,424 KB
testcase_33 AC 176 ms
7,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;
use POSIX 'floor';

my $n = <>;
chomp $n;

for (my $i = 0; $i < $n; $i++) {
    my ($a, $b) = split /[ \n]/, <>;

    my $c = sqrt($a) + sqrt($b);
    print floor($c) + 1, "\n";
}
0