結果

問題 No.236 鴛鴦茶
ユーザー ohanaohana
提出日時 2023-10-23 14:53:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 80,328 KB
最終ジャッジ日時 2024-09-22 10:11:07
合計ジャッジ時間 4,016 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
80,236 KB
testcase_01 AC 112 ms
80,320 KB
testcase_02 AC 110 ms
80,220 KB
testcase_03 AC 109 ms
80,044 KB
testcase_04 AC 111 ms
80,084 KB
testcase_05 AC 110 ms
80,120 KB
testcase_06 AC 108 ms
80,100 KB
testcase_07 AC 109 ms
80,084 KB
testcase_08 AC 112 ms
80,052 KB
testcase_09 AC 110 ms
80,080 KB
testcase_10 AC 110 ms
79,948 KB
testcase_11 AC 109 ms
79,760 KB
testcase_12 AC 110 ms
80,240 KB
testcase_13 AC 110 ms
80,144 KB
testcase_14 AC 110 ms
80,088 KB
testcase_15 AC 112 ms
80,152 KB
testcase_16 AC 112 ms
80,204 KB
testcase_17 AC 111 ms
80,120 KB
testcase_18 AC 110 ms
79,972 KB
testcase_19 AC 113 ms
80,008 KB
testcase_20 AC 111 ms
79,768 KB
testcase_21 AC 111 ms
80,328 KB
testcase_22 AC 111 ms
80,184 KB
testcase_23 AC 109 ms
80,072 KB
testcase_24 AC 111 ms
80,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal

a, b, x, y = map(decimal.Decimal, input().split())
c = a + b
print((a + b) * min(x / a, y / b))
0