結果

問題 No.445 得点
ユーザー ああいい
提出日時 2022-03-08 19:29:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 80,572 KB
最終ジャッジ日時 2024-07-23 19:30:00
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
A,B = map(Decimal,input().split())
ans = 50 * A
tmp = Decimal(0.2) * B + Decimal(0.8)
ans = int(ans / tmp)
print(ans + 50 * A)
0