結果

問題 No.504 ゲーム大会(ランキング)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-18 15:54:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,165 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 75,304 KB
実行使用メモリ 58,528 KB
最終ジャッジ日時 2024-10-01 20:08:08
合計ジャッジ時間 13,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,620 KB
testcase_01 AC 129 ms
41,160 KB
testcase_02 AC 128 ms
41,424 KB
testcase_03 AC 128 ms
40,404 KB
testcase_04 AC 129 ms
41,308 KB
testcase_05 AC 131 ms
41,380 KB
testcase_06 AC 128 ms
41,280 KB
testcase_07 AC 1,096 ms
58,112 KB
testcase_08 AC 1,048 ms
57,900 KB
testcase_09 AC 1,165 ms
58,252 KB
testcase_10 AC 1,088 ms
58,352 KB
testcase_11 AC 1,108 ms
57,940 KB
testcase_12 AC 1,049 ms
57,260 KB
testcase_13 AC 1,026 ms
58,528 KB
testcase_14 AC 1,100 ms
58,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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