結果

問題 No.9014 テストの合計点と平均点
ユーザー Thunder-SkyThunder-Sky
提出日時 2023-01-05 22:58:26
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 39,040 KB
最終ジャッジ日時 2024-05-07 02:42:37
合計ジャッジ時間 3,249 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
39,040 KB
testcase_01 AC 63 ms
38,912 KB
testcase_02 AC 64 ms
38,912 KB
testcase_03 AC 64 ms
38,912 KB
testcase_04 AC 63 ms
39,040 KB
testcase_05 AC 63 ms
39,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    var input = input.split("\n")[0].split(",");
    var result = (() => {
        count = 0;
        input.map(function(value) { count = count + Number(value)});
        return "合計点:" + count + "\n平均点:" + (count / 3).toFixed(1);
    })();
    console.log(result);
}

Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0