結果

問題 No.2407 Bouns 2.0
ユーザー lam6er
提出日時 2025-03-20 20:18:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 53,636 KB
最終ジャッジ日時 2025-03-20 20:19:28
合計ジャッジ時間 1,834 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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