結果

問題 No.504 ゲーム大会(ランキング)
ユーザー kzyKTkzyKT
提出日時 2016-06-04 20:25:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,077 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 1,938 ms
コンパイル使用メモリ 75,804 KB
実行使用メモリ 58,544 KB
最終ジャッジ日時 2024-10-08 16:29:50
合計ジャッジ時間 12,227 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,888 KB
testcase_01 AC 115 ms
40,932 KB
testcase_02 AC 106 ms
41,204 KB
testcase_03 AC 118 ms
41,020 KB
testcase_04 AC 113 ms
40,888 KB
testcase_05 AC 120 ms
41,136 KB
testcase_06 AC 115 ms
40,948 KB
testcase_07 AC 1,072 ms
57,816 KB
testcase_08 AC 1,045 ms
57,800 KB
testcase_09 AC 1,077 ms
57,908 KB
testcase_10 AC 1,020 ms
57,960 KB
testcase_11 AC 1,064 ms
57,708 KB
testcase_12 AC 964 ms
57,036 KB
testcase_13 AC 946 ms
58,544 KB
testcase_14 AC 1,018 ms
57,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static Scanner cin = new Scanner(System.in);
    public static void main(String[] args) {
        int r=1,n=cin.nextInt(),x=0;
        for(int i=0; i<n; i++) {
            int y=cin.nextInt();
            if(i==0) x=y;
            if(x<y) r++;
            System.out.println(r);
        }
    }
}
0