結果

問題 No.504 ゲーム大会(ランキング)
ユーザー htensaihtensai
提出日時 2019-11-17 19:32:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 682 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 59,840 KB
最終ジャッジ日時 2024-09-25 06:03:40
合計ジャッジ時間 9,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,896 KB
testcase_01 AC 129 ms
54,068 KB
testcase_02 AC 130 ms
54,044 KB
testcase_03 AC 129 ms
54,180 KB
testcase_04 AC 116 ms
52,912 KB
testcase_05 AC 126 ms
54,024 KB
testcase_06 AC 124 ms
53,972 KB
testcase_07 AC 679 ms
59,448 KB
testcase_08 AC 662 ms
59,840 KB
testcase_09 AC 681 ms
59,560 KB
testcase_10 AC 682 ms
59,432 KB
testcase_11 AC 648 ms
59,636 KB
testcase_12 AC 548 ms
59,252 KB
testcase_13 AC 526 ms
59,180 KB
testcase_14 AC 624 ms
59,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int order = 1;
		int score = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		sb.append(order).append("\n");
		for (int i = 0; i < n - 1; i++) {
		    if (score < sc.nextInt()) {
		        order++;
		    }
		    sb.append(order).append("\n");
		}
		System.out.print(sb);
	}
}


0