結果
問題 | No.89 どんどんドーナツどーんといこう! |
ユーザー | EnglishStudytwi |
提出日時 | 2015-05-15 22:54:11 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 189 bytes |
コンパイル時間 | 109 ms |
コンパイル使用メモリ | 32,404 KB |
実行使用メモリ | 32,788 KB |
最終ジャッジ日時 | 2024-07-06 04:12:33 |
合計ジャッジ時間 | 972 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 36 ms
32,656 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 36 ms
32,788 KB |
testcase_09 | AC | 38 ms
32,528 KB |
testcase_10 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $c = trim(fgets(STDIN)); fscanf(STDIN, "%f %f", $in, $out); $r_in = pow($in, 2) * 3.14; $r_out = pow($out, 2) * 3.14; $ans = ($r_in - $r_out) * $c; echo sprintf("%0.5f", $ans)."\n";