結果

問題 No.504 ゲーム大会(ランキング)
ユーザー HEGO55HEGO55
提出日時 2017-05-10 15:18:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,296 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 58,584 KB
最終ジャッジ日時 2024-09-15 07:08:59
合計ジャッジ時間 14,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,028 KB
testcase_01 AC 130 ms
41,112 KB
testcase_02 AC 117 ms
40,152 KB
testcase_03 AC 130 ms
40,988 KB
testcase_04 AC 130 ms
40,844 KB
testcase_05 AC 130 ms
40,672 KB
testcase_06 AC 128 ms
41,164 KB
testcase_07 AC 1,296 ms
58,576 KB
testcase_08 AC 1,288 ms
58,468 KB
testcase_09 AC 1,228 ms
58,320 KB
testcase_10 AC 1,280 ms
58,340 KB
testcase_11 AC 1,277 ms
58,584 KB
testcase_12 AC 1,144 ms
57,952 KB
testcase_13 AC 1,129 ms
58,356 KB
testcase_14 AC 1,288 ms
58,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Test31{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] point = new int[N];
		int ranking = 1;
		for(int i=0; i<N; i++){
			point[i] = sc.nextInt();
		}
		
		for(int j=0; j<N; j++){
			if(point[0]<point[j]){
				ranking++;
			}
			System.out.println(ranking);
		}
	}
} 
0