結果
| 問題 | 
                            No.9014 テストの合計点と平均点
                             | 
                    
| ユーザー | 
                             gew1fw
                         | 
                    
| 提出日時 | 2025-06-12 14:50:28 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 203 bytes | 
| コンパイル時間 | 330 ms | 
| コンパイル使用メモリ | 82,340 KB | 
| 実行使用メモリ | 54,052 KB | 
| 最終ジャッジ日時 | 2025-06-12 14:54:05 | 
| 合計ジャッジ時間 | 1,040 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | WA * 3 | 
ソースコード
j, m, b = map(int, input().split(','))
T = j + m + b
integer_part = T // 3
remainder = T % 3
decimal_part = (remainder * 10) // 3
A = f"{integer_part}.{decimal_part}"
print(f"合計点:{T}平均点:{A}")
            
            
            
        
            
gew1fw