結果

問題 No.2407 Bouns 2.0
ユーザー lam6er
提出日時 2025-03-20 18:42:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 53,736 KB
最終ジャッジ日時 2025-03-20 18:42:49
合計ジャッジ時間 1,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

W, Z, B = input().split()
W = int(W)
Z = int(Z)
B = float(B)
total_points = (W + Z) * (1 + B)
print(int(total_points))
0