結果

問題 No.504 ゲーム大会(ランキング)
ユーザー samplelpmassamplelpmas
提出日時 2017-04-27 20:20:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,164 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 58,292 KB
最終ジャッジ日時 2024-09-13 14:52:21
合計ジャッジ時間 13,621 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,204 KB
testcase_01 AC 133 ms
41,136 KB
testcase_02 AC 133 ms
41,588 KB
testcase_03 AC 134 ms
41,140 KB
testcase_04 AC 134 ms
41,472 KB
testcase_05 AC 135 ms
41,212 KB
testcase_06 AC 117 ms
40,272 KB
testcase_07 AC 1,155 ms
57,956 KB
testcase_08 AC 1,164 ms
58,180 KB
testcase_09 AC 1,152 ms
58,108 KB
testcase_10 AC 1,146 ms
57,672 KB
testcase_11 AC 1,155 ms
57,844 KB
testcase_12 AC 1,076 ms
57,056 KB
testcase_13 AC 1,080 ms
58,292 KB
testcase_14 AC 1,121 ms
58,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        int rank = 1;

        int scoreK = sc.nextInt();

        System.out.println(rank);

        for (int i = 1; i < n; i++) {

            int scoreOthers = sc.nextInt();

            if (scoreOthers > scoreK) {
                rank++;
            }

            System.out.println(rank);

        }

    }

}
0