結果

問題 No.504 ゲーム大会(ランキング)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-04-21 22:27:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,226 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 2,999 ms
コンパイル使用メモリ 73,760 KB
実行使用メモリ 69,524 KB
最終ジャッジ日時 2024-07-20 05:23:50
合計ジャッジ時間 13,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int A = sc.nextInt();
        int rank = 1;
        System.out.println(1);
        for(int i=1; i<N; i++){
            int tmp = sc.nextInt();
            if(tmp>A)rank++;
            System.out.println(rank);
        }
    }
}
0