結果
問題 |
No.9014 テストの合計点と平均点
|
ユーザー |
![]() |
提出日時 | 2025-06-12 18:31:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 162 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,352 KB |
最終ジャッジ日時 | 2025-06-12 18:32:04 |
合計ジャッジ時間 | 891 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 3 |
ソースコード
import math j, m, b = map(int, input().split(',')) total = j + m + b average = math.floor(total / 3 * 10) / 10 print(f"合計点:{total}平均点:{average:.1f}")