結果
問題 | No.89 どんどんドーナツどーんといこう! |
ユーザー | C_kumo |
提出日時 | 2019-01-21 21:29:15 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 418 bytes |
コンパイル時間 | 606 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-05 23:33:21 |
合計ジャッジ時間 | 982 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
ソースコード
#include <stdio.h> #include <math.h> int main(void) { char c,rin,rout; double smallR,largeR,cal; scanf("%hhd",&c); scanf("%hhd %hhd",&rin,&rout); smallR = (rout - rin) / 2.0; #ifdef M_PI largeR = (rin + smallR) * 2.0 * M_PI; cal = smallR * smallR * M_PI * largeR * c; #else largeR = (rin + smallR) * 2.0 * 3.141592; cal = smallR * smallR * 3.141592 * largeR * c; #endif printf("%f\n",cal); return 0; }