結果

問題 No.504 ゲーム大会(ランキング)
ユーザー fukuseifukusei
提出日時 2017-05-10 15:09:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,229 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 74,108 KB
実行使用メモリ 58,928 KB
最終ジャッジ日時 2024-09-15 07:07:54
合計ジャッジ時間 14,014 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,060 KB
testcase_01 AC 116 ms
39,836 KB
testcase_02 AC 126 ms
41,116 KB
testcase_03 AC 129 ms
41,204 KB
testcase_04 AC 132 ms
40,920 KB
testcase_05 AC 130 ms
41,512 KB
testcase_06 AC 130 ms
41,164 KB
testcase_07 AC 1,214 ms
58,876 KB
testcase_08 AC 1,184 ms
58,872 KB
testcase_09 AC 1,214 ms
58,580 KB
testcase_10 AC 1,214 ms
58,772 KB
testcase_11 AC 1,200 ms
58,708 KB
testcase_12 AC 1,063 ms
58,928 KB
testcase_13 AC 1,067 ms
58,688 KB
testcase_14 AC 1,229 ms
58,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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