結果
| 問題 | 
                            No.9014 テストの合計点と平均点
                             | 
                    
| ユーザー | 
                             | 
                    
| 提出日時 | 2025-02-04 15:06:53 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 117 bytes | 
| コンパイル時間 | 1,081 ms | 
| コンパイル使用メモリ | 81,920 KB | 
| 実行使用メモリ | 64,768 KB | 
| 最終ジャッジ日時 | 2025-02-04 15:06:56 | 
| 合計ジャッジ時間 | 2,360 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 3 | 
| other | RE * 3 | 
ソースコード
first = map(int,input().split("'"))
print("合計点:",sum(first))
print("平均点:",round(sum(first)/len(first),1))