結果

問題 No.504 ゲーム大会(ランキング)
ユーザー kazapyon27kazapyon27
提出日時 2017-06-11 18:59:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 3,553 ms
コンパイル使用メモリ 74,892 KB
実行使用メモリ 68,656 KB
最終ジャッジ日時 2024-09-24 16:26:21
合計ジャッジ時間 10,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,376 KB
testcase_01 AC 53 ms
50,300 KB
testcase_02 AC 52 ms
49,996 KB
testcase_03 AC 52 ms
50,316 KB
testcase_04 AC 53 ms
50,364 KB
testcase_05 AC 52 ms
50,164 KB
testcase_06 AC 52 ms
49,940 KB
testcase_07 AC 677 ms
68,288 KB
testcase_08 AC 665 ms
64,264 KB
testcase_09 AC 680 ms
68,508 KB
testcase_10 AC 682 ms
68,656 KB
testcase_11 AC 664 ms
67,916 KB
testcase_12 AC 668 ms
68,284 KB
testcase_13 AC 634 ms
67,736 KB
testcase_14 AC 682 ms
68,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.504 ゲーム大会(ランキング)*/
import java.io.*;
public class No504{
	public static void main(String[] args) {
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			int player=Integer.parseInt(input.readLine());
			Integer score[] = new Integer [player];
			int Rank=1;
			for(int i=0;i<score.length;i++){
				score[i]=Integer.parseInt(input.readLine());
			}
			for(int j=0;j<score.length;j++){
				if(score[0]<score[j]){
					Rank+=1;
				}
				System.out.println(Rank);
			}
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}
0