結果

問題 No.98 円を描こう
ユーザー tonyu0tonyu0
提出日時 2020-03-29 17:23:21
言語 Perl
(5.38.2)
結果
AC  
実行時間 9 ms / 5,000 ms
コード長 95 bytes
コンパイル時間 70 ms
コンパイル使用メモリ 5,300 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2023-08-30 19:51:24
合計ジャッジ時間 753 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
5,200 KB
testcase_01 AC 6 ms
5,332 KB
testcase_02 AC 6 ms
5,408 KB
testcase_03 AC 7 ms
5,224 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 6 ms
5,312 KB
testcase_06 AC 9 ms
5,504 KB
testcase_07 AC 9 ms
5,220 KB
testcase_08 AC 9 ms
5,256 KB
testcase_09 AC 9 ms
5,292 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

my ($x, $y) = glob<>;

my $kyori = $x**2 + $y**2;

$i++while (($i/2)**2 <= $kyori);
print$i,$/;
0