結果

問題 No.948 Bomb vs Dush
ユーザー 👑 rin204rin204
提出日時 2022-02-14 00:43:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-06-29 05:52:24
合計ジャッジ時間 2,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,540 KB
testcase_01 AC 35 ms
52,368 KB
testcase_02 AC 35 ms
53,284 KB
testcase_03 AC 33 ms
53,680 KB
testcase_04 AC 36 ms
53,344 KB
testcase_05 AC 34 ms
53,856 KB
testcase_06 AC 33 ms
52,996 KB
testcase_07 AC 34 ms
53,120 KB
testcase_08 AC 33 ms
52,728 KB
testcase_09 AC 34 ms
53,520 KB
testcase_10 AC 33 ms
52,808 KB
testcase_11 AC 32 ms
52,992 KB
testcase_12 AC 33 ms
52,836 KB
testcase_13 AC 33 ms
52,852 KB
testcase_14 AC 33 ms
53,188 KB
testcase_15 AC 34 ms
52,904 KB
testcase_16 AC 33 ms
52,564 KB
testcase_17 AC 34 ms
52,516 KB
testcase_18 AC 34 ms
52,636 KB
testcase_19 AC 34 ms
54,148 KB
testcase_20 AC 32 ms
52,440 KB
testcase_21 AC 32 ms
52,628 KB
testcase_22 AC 33 ms
52,384 KB
testcase_23 AC 33 ms
52,576 KB
testcase_24 AC 33 ms
53,532 KB
testcase_25 AC 33 ms
54,144 KB
testcase_26 AC 32 ms
52,632 KB
testcase_27 AC 36 ms
52,904 KB
testcase_28 AC 37 ms
53,648 KB
testcase_29 AC 35 ms
53,016 KB
testcase_30 AC 33 ms
53,240 KB
testcase_31 AC 34 ms
53,244 KB
testcase_32 AC 36 ms
52,816 KB
testcase_33 AC 36 ms
53,664 KB
testcase_34 AC 35 ms
52,724 KB
testcase_35 AC 36 ms
53,300 KB
testcase_36 AC 35 ms
53,056 KB
testcase_37 AC 33 ms
52,756 KB
testcase_38 AC 34 ms
52,956 KB
testcase_39 AC 34 ms
53,560 KB
testcase_40 AC 35 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

r = float(input())
R = float(input())
theta = 2 * math.atan2(r, (R * R - r * r) ** 0.5)
print(2 * math.pi - theta)
ans = math.pi * ((R + r) ** 2 - (R - r) ** 2) / (2 * math.pi)
ans *= 2 * math.pi - theta
ans += math.pi * r * r
print(ans)
0