結果

問題 No.98 円を描こう
ユーザー sam_kinosam_kino
提出日時 2016-08-31 12:37:03
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 238 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 30,696 KB
実行使用メモリ 31,384 KB
最終ジャッジ日時 2024-04-26 21:31:20
合計ジャッジ時間 1,208 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,224 KB
testcase_01 AC 41 ms
31,384 KB
testcase_02 AC 41 ms
31,352 KB
testcase_03 AC 41 ms
31,176 KB
testcase_04 AC 41 ms
31,132 KB
testcase_05 AC 42 ms
31,140 KB
testcase_06 WA -
testcase_07 AC 41 ms
31,096 KB
testcase_08 AC 41 ms
31,124 KB
testcase_09 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

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

    $r=sqrt(($x*$x)+($y*$y));

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

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


	echo $ans.PHP_EOL;
0