結果

問題 No.504 ゲーム大会(ランキング)
ユーザー shinwisteriashinwisteria
提出日時 2017-04-21 22:38:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,127 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 4,189 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 58,896 KB
最終ジャッジ日時 2024-07-20 05:29:57
合計ジャッジ時間 14,540 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,712 KB
testcase_01 AC 120 ms
41,008 KB
testcase_02 AC 122 ms
41,324 KB
testcase_03 AC 119 ms
41,168 KB
testcase_04 AC 118 ms
40,800 KB
testcase_05 AC 115 ms
41,148 KB
testcase_06 AC 119 ms
41,324 KB
testcase_07 AC 1,073 ms
56,920 KB
testcase_08 AC 1,077 ms
57,872 KB
testcase_09 AC 1,096 ms
57,340 KB
testcase_10 AC 1,127 ms
58,092 KB
testcase_11 AC 1,030 ms
58,004 KB
testcase_12 AC 1,019 ms
56,560 KB
testcase_13 AC 998 ms
58,896 KB
testcase_14 AC 1,071 ms
58,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Gamecontest {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt();
		int count = 1 , a = s.nextInt();
		System.out.println(count);
		for(int i = 0;i < N-1;i++){
			if(s.nextInt() > a){
				count++;
			}
			System.out.println(count);
		}
		s.close();

	}

}
0