結果

問題 No.504 ゲーム大会(ランキング)
ユーザー yagi2yagi2
提出日時 2017-04-21 22:27:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,162 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 2,311 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 58,008 KB
最終ジャッジ日時 2024-07-20 05:22:46
合計ジャッジ時間 12,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,932 KB
testcase_01 AC 125 ms
40,932 KB
testcase_02 AC 132 ms
41,152 KB
testcase_03 AC 127 ms
41,144 KB
testcase_04 AC 126 ms
40,720 KB
testcase_05 AC 120 ms
41,152 KB
testcase_06 AC 117 ms
39,740 KB
testcase_07 AC 1,104 ms
57,472 KB
testcase_08 AC 1,008 ms
57,796 KB
testcase_09 AC 1,088 ms
57,520 KB
testcase_10 AC 1,063 ms
57,960 KB
testcase_11 AC 1,055 ms
57,696 KB
testcase_12 AC 1,014 ms
57,016 KB
testcase_13 AC 1,130 ms
56,960 KB
testcase_14 AC 1,162 ms
58,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long N = sc.nextLong();
        long K = sc.nextLong();

        long NO = 1;
        System.out.println(NO);
        for (long i = 0; i < N-1; i++) {
            long tmp = sc.nextLong();
            if (K < tmp)NO++;
            System.out.println(NO);
        }
    }
}
0