結果
問題 | No.306 さいたま2008 |
ユーザー |
![]() |
提出日時 | 2025-03-20 21:09:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 172 bytes |
コンパイル時間 | 695 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 53,672 KB |
最終ジャッジ日時 | 2025-03-20 21:09:59 |
合計ジャッジ時間 | 2,006 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
xa, ya = map(int, input().split())xb, yb = map(int, input().split())numerator = xb * ya + xa * ybdenominator = xa + xbyp = numerator / denominatorprint(f"{yp:.10g}")