結果

問題 No.504 ゲーム大会(ランキング)
ユーザー Mcpu3Mcpu3
提出日時 2018-06-26 00:16:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,206 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 2,615 ms
コンパイル使用メモリ 83,424 KB
実行使用メモリ 69,580 KB
最終ジャッジ日時 2024-06-30 22:46:12
合計ジャッジ時間 13,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,204 KB
testcase_01 AC 136 ms
54,016 KB
testcase_02 AC 133 ms
54,280 KB
testcase_03 AC 188 ms
53,768 KB
testcase_04 AC 133 ms
53,672 KB
testcase_05 AC 135 ms
54,236 KB
testcase_06 AC 131 ms
53,988 KB
testcase_07 AC 1,158 ms
69,284 KB
testcase_08 AC 1,148 ms
69,580 KB
testcase_09 AC 1,169 ms
69,560 KB
testcase_10 AC 1,206 ms
69,444 KB
testcase_11 AC 1,148 ms
69,528 KB
testcase_12 AC 1,090 ms
68,644 KB
testcase_13 AC 1,058 ms
68,324 KB
testcase_14 AC 1,147 ms
69,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no504{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n=stdIn.nextInt(),m=stdIn.nextInt(),a,i,c=1;
		System.out.println("1");
		for(i=1;i<n;i++) {
			a=stdIn.nextInt();
			if(a>m)c++;
			System.out.println(c);
		}
	}
}
0