結果
| 問題 | 
                            No.9014 テストの合計点と平均点
                             | 
                    
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-08-21 08:27:54 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 175 bytes | 
| コンパイル時間 | 197 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 11,008 KB | 
| 最終ジャッジ日時 | 2024-10-14 17:19:33 | 
| 合計ジャッジ時間 | 933 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 3 | 
| other | RE * 3 | 
ソースコード
import math
j, m, b = map(int, input().split(','))
T_sum = j + m + b
A_ave = math.floor(T_sum / 3)
print("合計点:{}".format(T_sum))
print("平均点:{:.1}".format(A_ave))