結果
| 問題 | 
                            No.89 どんどんドーナツどーんといこう!
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-03-02 04:39:41 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 29 ms / 5,000 ms | 
| コード長 | 223 bytes | 
| コンパイル時間 | 147 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,880 KB | 
| 最終ジャッジ日時 | 2024-10-13 20:54:58 | 
| 合計ジャッジ時間 | 1,153 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 9 | 
ソースコード
# yukicoder No.89 どんどんドーナツどーんといこう! 2020/03/02 import math c=int(input()) rin,rout=map(int,input().split()) r=(rout-rin)/2 center=rin+r ans=(math.pi*pow(r,2))*(center*2*math.pi) print(ans*c)