結果

問題 No.98 円を描こう
ユーザー sam_kinosam_kino
提出日時 2016-08-31 15:20:12
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 241 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 31,236 KB
最終ジャッジ日時 2024-04-26 21:32:20
合計ジャッジ時間 1,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,236 KB
testcase_01 AC 40 ms
31,112 KB
testcase_02 AC 40 ms
30,972 KB
testcase_03 AC 39 ms
31,000 KB
testcase_04 AC 40 ms
31,200 KB
testcase_05 AC 40 ms
31,188 KB
testcase_06 AC 41 ms
31,228 KB
testcase_07 AC 40 ms
31,144 KB
testcase_08 AC 41 ms
31,116 KB
testcase_09 AC 41 ms
31,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

    list($x,$y)=explode(" ",trim(fgets(STDIN)));
	$ans=0;

    $r=sqrt(($x*$x)+($y*$y));
    //echo $r.PHP_EOL;


    $ans=ceil($r*2);
	//echo "sam=".$ans.PHP_EOL;

    if($ans==$r*2){
        $ans=$ans+1;
    }


	echo $ans.PHP_EOL;
0