結果

問題 No.9014 テストの合計点と平均点
ユーザー K2K2
提出日時 2021-08-21 08:09:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 131 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-14 16:58:32
合計ジャッジ時間 943 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

j, m, b = map(int, input().split(','))
T_sum = j + m + b
A_ave = T_sum / 3

print("合計点:" + T_sum)
print("平均点:" + A_ave)
0