結果

問題 No.504 ゲーム大会(ランキング)
ユーザー tentententen
提出日時 2020-09-11 09:07:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 75,608 KB
実行使用メモリ 49,584 KB
最終ジャッジ日時 2024-06-07 04:06:03
合計ジャッジ時間 9,056 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,104 KB
testcase_01 AC 118 ms
41,208 KB
testcase_02 AC 121 ms
40,240 KB
testcase_03 AC 122 ms
40,984 KB
testcase_04 AC 124 ms
41,192 KB
testcase_05 AC 106 ms
40,208 KB
testcase_06 AC 117 ms
40,928 KB
testcase_07 AC 648 ms
48,908 KB
testcase_08 AC 545 ms
49,584 KB
testcase_09 AC 647 ms
49,100 KB
testcase_10 AC 626 ms
49,060 KB
testcase_11 AC 637 ms
48,876 KB
testcase_12 AC 506 ms
48,756 KB
testcase_13 AC 475 ms
47,232 KB
testcase_14 AC 630 ms
48,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int base = sc.nextInt();
    	StringBuilder sb = new StringBuilder();
    	sb.append("1\n");
    	int rank = 1;
    	for (int i = 1; i < n; i++) {
    	    int x = sc.nextInt();
    	    if (base < x) {
    	        rank++;
    	    }
    	    sb.append(rank).append("\n");
    	}
    	System.out.print(sb);
	}
}
0