結果

問題 No.306 さいたま2008
ユーザー cormoran
提出日時 2016-05-31 18:24:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 109 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2025-02-14 12:13:10
合計ジャッジ時間 1,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

x1, y1 = map(int, input().split())
x2, y2 = map(int, input().split())
print((x2 * y1 + x1 * y2) / (x1 + x2))
0