結果

問題 No.445 得点
ユーザー HujiLee
提出日時 2016-11-25 21:52:20
言語 JavaScript
(node v23.5.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 40,192 KB
最終ジャッジ日時 2024-10-13 00:04:38
合計ジャッジ時間 2,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

var input = '';
process.stdin.resume();
process.stdin.setEncoding('utf8');
process.stdin.on('data', function (chunk) {
    input += chunk;
});
process.stdin.on('end', function () {
    input = input.split('\n');
    main();
});


function main() {
    var first_line=input[0].split(" ").map(function (x) {
        return x-0;
    });
    console.log(
        50*first_line[0]+Math.floor((50*first_line[0]/(8+2*first_line[1])*10))
    );
}

/**
 * Created by Administrator on 2016/11/25 0025.
 */
0