結果

問題 No.504 ゲーム大会(ランキング)
ユーザー fjafjafjafjafjafja
提出日時 2017-08-23 00:39:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,279 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 3,297 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 61,604 KB
最終ジャッジ日時 2024-10-15 04:30:05
合計ジャッジ時間 15,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,352 KB
testcase_01 AC 131 ms
41,236 KB
testcase_02 AC 132 ms
41,084 KB
testcase_03 AC 128 ms
41,256 KB
testcase_04 AC 131 ms
41,256 KB
testcase_05 AC 134 ms
40,996 KB
testcase_06 AC 135 ms
41,156 KB
testcase_07 AC 1,263 ms
59,540 KB
testcase_08 AC 1,279 ms
59,768 KB
testcase_09 AC 1,255 ms
59,532 KB
testcase_10 AC 1,237 ms
59,688 KB
testcase_11 AC 1,223 ms
59,532 KB
testcase_12 AC 1,131 ms
59,812 KB
testcase_13 AC 1,132 ms
61,604 KB
testcase_14 AC 1,268 ms
59,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N504
{
	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		long a[]=new long[N];
		int ans[]=new int[N];
		a[0]=sc.nextLong();
		ans[0]=1;
		for(int i=1;i<N;i++)
		{
			a[i]=sc.nextLong();
			ans[i]=(a[0]>=a[i])?(ans[i-1]):(ans[i-1]+1);
		}
		for(int i:ans)
		{
			System.out.println(i);
		}
	}
}
0