結果

問題 No.46 はじめのn歩
ユーザー mahnamahna
提出日時 2021-02-10 16:04:40
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 67 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 42,304 KB
最終ジャッジ日時 2024-07-08 02:23:43
合計ジャッジ時間 2,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
40,192 KB
testcase_01 AC 66 ms
42,216 KB
testcase_02 AC 64 ms
42,304 KB
testcase_03 AC 64 ms
40,192 KB
testcase_04 AC 64 ms
40,064 KB
testcase_05 AC 66 ms
42,168 KB
testcase_06 AC 66 ms
40,064 KB
testcase_07 AC 67 ms
40,192 KB
testcase_08 AC 66 ms
40,192 KB
testcase_09 AC 66 ms
42,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

process.stdin.resume();
process.stdin.setEncoding('utf8');

var input_lines = [];
var reader = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});

reader.on('line', (line) => {
  input_lines.push(line);
});

reader.on('close', () => {

    let [a,b] = input_lines[0].split(" ");
    console.log(Math.ceil( b / a));

});
0