結果
| 問題 |
No.9014 テストの合計点と平均点
|
| ユーザー |
|
| 提出日時 | 2025-02-04 15:29:42 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 106 bytes |
| コンパイル時間 | 723 ms |
| コンパイル使用メモリ | 82,768 KB |
| 実行使用メモリ | 53,896 KB |
| 最終ジャッジ日時 | 2025-02-04 15:29:44 |
| 合計ジャッジ時間 | 1,951 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 3 |
ソースコード
A,B,C = map(int,input().split(","))
sum = A+B+C
print("合計点:",sum)
print("平均点:",round(sum/3,1))