結果

問題 No.504 ゲーム大会(ランキング)
ユーザー tsunabittsunabit
提出日時 2019-06-12 21:23:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,238 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 3,405 ms
コンパイル使用メモリ 79,280 KB
実行使用メモリ 59,548 KB
最終ジャッジ日時 2024-10-11 21:00:46
合計ジャッジ時間 14,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,836 KB
testcase_01 AC 126 ms
41,132 KB
testcase_02 AC 124 ms
41,260 KB
testcase_03 AC 108 ms
40,188 KB
testcase_04 AC 124 ms
40,912 KB
testcase_05 AC 112 ms
39,968 KB
testcase_06 AC 124 ms
41,016 KB
testcase_07 AC 1,202 ms
59,052 KB
testcase_08 AC 1,089 ms
59,548 KB
testcase_09 AC 1,202 ms
59,240 KB
testcase_10 AC 1,211 ms
58,936 KB
testcase_11 AC 1,238 ms
59,032 KB
testcase_12 AC 1,136 ms
59,396 KB
testcase_13 AC 1,054 ms
59,432 KB
testcase_14 AC 1,191 ms
58,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No504 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int[] a = new int[n];
    	int s = sc.nextInt();
    	int[] r = new int[n];
    	r[0] = 1;
    	
    	for(int i = 1; i < n; i++) {
    		if(s < sc.nextInt()) {
    			r[i] = r[i - 1] + 1;
    		}else {
    			r[i] = r[i - 1];
    		}
    	}
    	for(int v : r) {
    		System.out.println(v);
    	}
    	
    	
    	
    }
}
0