結果

問題 No.504 ゲーム大会(ランキング)
ユーザー testtest
提出日時 2022-11-24 17:28:49
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 64 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 61,388 KB
最終ジャッジ日時 2024-10-01 07:27:09
合計ジャッジ時間 8,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
39,296 KB
testcase_01 AC 64 ms
39,168 KB
testcase_02 AC 61 ms
39,040 KB
testcase_03 AC 62 ms
39,296 KB
testcase_04 AC 63 ms
39,040 KB
testcase_05 AC 58 ms
39,040 KB
testcase_06 AC 54 ms
39,296 KB
testcase_07 AC 923 ms
60,624 KB
testcase_08 AC 785 ms
60,236 KB
testcase_09 AC 894 ms
60,872 KB
testcase_10 AC 786 ms
59,472 KB
testcase_11 AC 797 ms
61,388 KB
testcase_12 AC 787 ms
60,352 KB
testcase_13 AC 871 ms
58,304 KB
testcase_14 AC 798 ms
60,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    const src = input.split("\n");
    const n = parseInt(src[0]);
    const K = parseInt(src[1]);
    let k = 1;
    console.log(k);
    for (let i = 2; i <= n; i++) {
        if (K < parseInt(src[i])) k++;
        console.log(k);
    }
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0