結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 118 ms
80,208 KB
testcase_02 AC 114 ms
80,276 KB
testcase_03 AC 113 ms
79,908 KB
testcase_04 AC 111 ms
80,156 KB
testcase_05 AC 110 ms
80,264 KB
testcase_06 AC 112 ms
80,288 KB
testcase_07 AC 114 ms
80,296 KB
testcase_08 AC 113 ms
80,280 KB
testcase_09 AC 112 ms
80,172 KB
testcase_10 AC 110 ms
80,328 KB
testcase_11 AC 112 ms
80,324 KB
testcase_12 WA -
testcase_13 AC 112 ms
80,312 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 115 ms
80,024 KB
権限があれば一括ダウンロードができます

ソースコード

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