結果

問題 No.445 得点
ユーザー ああいいああいい
提出日時 2022-03-08 19:29:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 87,340 KB
実行使用メモリ 89,296 KB
最終ジャッジ日時 2023-10-01 01:58:34
合計ジャッジ時間 6,017 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 204 ms
88,804 KB
testcase_02 AC 206 ms
88,988 KB
testcase_03 AC 210 ms
88,956 KB
testcase_04 AC 208 ms
89,008 KB
testcase_05 AC 206 ms
88,996 KB
testcase_06 AC 204 ms
88,624 KB
testcase_07 AC 205 ms
88,984 KB
testcase_08 AC 206 ms
88,940 KB
testcase_09 AC 203 ms
88,988 KB
testcase_10 AC 202 ms
88,828 KB
testcase_11 AC 209 ms
88,920 KB
testcase_12 WA -
testcase_13 AC 207 ms
88,764 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 214 ms
89,008 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