結果
問題 | No.9014 テストの合計点と平均点 |
ユーザー | tacker530 |
提出日時 | 2021-11-22 17:47:46 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 185 bytes |
コンパイル時間 | 493 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-06-24 05:43:40 |
合計ジャッジ時間 | 1,772 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
12,160 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 86 ms
12,288 KB |
testcase_04 | AC | 86 ms
12,288 KB |
testcase_05 | AC | 87 ms
12,288 KB |
コンパイルメッセージ
Syntax OK
ソースコード
# No.9014 テストの合計点と平均点 j,m,b = gets.chomp.split(",").map(&:to_i) total = j + m + b avg = "%#.03g" % (total / 3.0) puts "合計点:#{total}" puts "平均点:#{avg}"