結果

問題 No.504 ゲーム大会(ランキング)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 00:35:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,198 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 69,540 KB
最終ジャッジ日時 2024-11-06 19:22:12
合計ジャッジ時間 13,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,944 KB
testcase_01 AC 134 ms
53,948 KB
testcase_02 AC 135 ms
54,220 KB
testcase_03 AC 137 ms
54,076 KB
testcase_04 AC 136 ms
54,148 KB
testcase_05 AC 137 ms
53,856 KB
testcase_06 AC 137 ms
53,988 KB
testcase_07 AC 1,179 ms
69,400 KB
testcase_08 AC 1,198 ms
69,428 KB
testcase_09 AC 1,178 ms
69,540 KB
testcase_10 AC 1,190 ms
69,396 KB
testcase_11 AC 1,156 ms
68,868 KB
testcase_12 AC 1,095 ms
68,656 KB
testcase_13 AC 1,061 ms
69,036 KB
testcase_14 AC 1,164 ms
69,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int rank = 1;
		int score = 0;
		for (int i=0; i<n; i++) {
			if (i==0) {
				score = sc.nextInt();
				System.out.println(rank);
			}
			else {
				if (score < sc.nextInt()) {rank++; System.out.println(rank);}
				else {System.out.println(rank);}
			}
		}
	}
}
0