結果

問題 No.9014 テストの合計点と平均点
ユーザー gew1fw
提出日時 2025-06-12 15:23:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,632 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2025-06-12 15:23:31
合計ジャッジ時間 1,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

# Read the input values
j, m, b = map(int, input().split(','))

# Calculate the total score
total = j + m + b

# Calculate the average and truncate to one decimal place
average = total / 3
truncated_average = math.floor(average * 10) / 10

# Format and print the result
print(f"合計点:{total}平均点:{truncated_average:.1f}")
0