結果

問題 No.504 ゲーム大会(ランキング)
ユーザー uafr_csuafr_cs
提出日時 2017-10-28 18:36:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,181 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 3,392 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 69,904 KB
最終ジャッジ日時 2024-11-22 03:52:24
合計ジャッジ時間 13,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,232 KB
testcase_01 AC 128 ms
54,112 KB
testcase_02 AC 127 ms
54,072 KB
testcase_03 AC 128 ms
53,676 KB
testcase_04 AC 128 ms
54,068 KB
testcase_05 AC 128 ms
53,944 KB
testcase_06 AC 131 ms
54,072 KB
testcase_07 AC 1,167 ms
69,060 KB
testcase_08 AC 1,181 ms
69,680 KB
testcase_09 AC 1,136 ms
69,484 KB
testcase_10 AC 1,129 ms
69,288 KB
testcase_11 AC 1,142 ms
69,328 KB
testcase_12 AC 1,056 ms
69,904 KB
testcase_13 AC 1,030 ms
69,360 KB
testcase_14 AC 1,111 ms
69,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

	}
}
0