結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー EnglishStudytwiEnglishStudytwi
提出日時 2015-05-20 22:51:00
言語 PHP
(8.3.4)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 31,272 KB
実行使用メモリ 31,600 KB
最終ジャッジ日時 2024-10-05 22:34:18
合計ジャッジ時間 1,162 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
31,336 KB
testcase_01 AC 36 ms
31,600 KB
testcase_02 AC 36 ms
31,184 KB
testcase_03 AC 35 ms
31,528 KB
testcase_04 AC 35 ms
31,076 KB
testcase_05 AC 34 ms
30,912 KB
testcase_06 AC 34 ms
31,244 KB
testcase_07 AC 34 ms
31,356 KB
testcase_08 AC 35 ms
31,336 KB
testcase_09 AC 36 ms
31,484 KB
testcase_10 AC 34 ms
31,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
fscanf(STDIN, "%d", $c);
fscanf(STDIN, "%d %d", $r_in, $r_out);

$cal = $c * 2.0 * pi() * (($r_out + $r_in) / 2) * pi() * pow(($r_out - $r_in) / 2, 2);

echo $cal."\n";
0