結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー r_ishida
提出日時 2025-05-09 22:18:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 415 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2025-05-09 22:18:09
合計ジャッジ時間 1,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
def S(): return sys.stdin.readline().rstrip()
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int, sys.stdin.readline().rstrip().split())
def LI(): return list(map(int, sys.stdin.readline().rstrip().split()))
def LS(): return list(sys.stdin.readline().rstrip().split())

c = I()
ri, ro = MI()

r = (ro-ri)/2
r2 = (ro+ri)/2
ans = r**2*math.pi*2*r2*math.pi*c

print(ans)
0