結果
問題 |
No.9014 テストの合計点と平均点
|
ユーザー |
![]() |
提出日時 | 2025-03-31 17:32:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 283 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 54,036 KB |
最終ジャッジ日時 | 2025-03-31 17:33:37 |
合計ジャッジ時間 | 778 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 3 |
ソースコード
# Read input values j, m, b = map(int, input().split(',')) # Calculate total score total = j + m + b # Calculate average rounded down to one decimal place average = (total * 10 // 3) / 10 # Print the result in the required format print(f"合計点:{total}平均点:{average:.1f}")