結果

問題 No.2407 Bouns 2.0
ユーザー 松本昇一松本昇一
提出日時 2023-08-20 09:58:46
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 39,296 KB
最終ジャッジ日時 2024-05-07 17:00:27
合計ジャッジ時間 2,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
38,656 KB
testcase_01 AC 54 ms
38,528 KB
testcase_02 AC 60 ms
38,784 KB
testcase_03 AC 60 ms
38,784 KB
testcase_04 AC 61 ms
38,656 KB
testcase_05 AC 59 ms
39,168 KB
testcase_06 AC 60 ms
38,656 KB
testcase_07 AC 60 ms
38,784 KB
testcase_08 AC 55 ms
38,656 KB
testcase_09 AC 52 ms
38,656 KB
testcase_10 AC 56 ms
38,528 KB
testcase_11 AC 58 ms
38,912 KB
testcase_12 AC 60 ms
38,912 KB
testcase_13 AC 57 ms
38,528 KB
testcase_14 AC 55 ms
39,296 KB
testcase_15 AC 57 ms
38,656 KB
testcase_16 AC 60 ms
38,528 KB
testcase_17 AC 59 ms
38,912 KB
testcase_18 AC 59 ms
38,528 KB
testcase_19 AC 56 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。

    var data = input.split("\n")
    
    var first_line = data[0].split(" ")
    // var second_line = data[1]
    // var c = parseInt(first_line[0]) + parseInt(first_line[1])

    // console.log(first_line)
    let amount = parseInt(first_line[0])+parseInt(first_line[1])
    
    amount += parseInt(first_line[0])*parseFloat(first_line[2])+
    parseInt(first_line[1])*parseFloat(first_line[2])
    
    
    console.log(amount)
}

// Don't edit this line!
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0