結果

問題 No.504 ゲーム大会(ランキング)
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 07:37:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 63,412 KB
最終ジャッジ日時 2024-09-14 05:27:50
合計ジャッジ時間 8,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,056 KB
testcase_01 AC 54 ms
50,044 KB
testcase_02 AC 55 ms
50,100 KB
testcase_03 AC 54 ms
50,108 KB
testcase_04 AC 55 ms
49,876 KB
testcase_05 AC 55 ms
49,856 KB
testcase_06 AC 55 ms
49,688 KB
testcase_07 AC 625 ms
62,780 KB
testcase_08 AC 622 ms
62,848 KB
testcase_09 AC 634 ms
63,272 KB
testcase_10 AC 614 ms
63,412 KB
testcase_11 AC 633 ms
63,080 KB
testcase_12 AC 643 ms
63,244 KB
testcase_13 AC 630 ms
63,264 KB
testcase_14 AC 610 ms
62,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        int N = Integer.parseInt(reader.readLine());
        int rankK = 1;
        int scoreK = Integer.parseInt(reader.readLine());;
        System.out.println(rankK);
        for (int i = 1; i < N; i++) {
            int score = Integer.parseInt(reader.readLine());
            if(scoreK < score) {
                rankK+=1;
            }
            System.out.println(rankK);
        }

    }
}
0