結果

問題 No.1110 好きな歌
ユーザー ks2mks2m
提出日時 2020-07-10 21:42:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,149 ms / 5,000 ms
コード長 998 bytes
コンパイル時間 2,532 ms
コンパイル使用メモリ 85,672 KB
実行使用メモリ 64,996 KB
最終ジャッジ日時 2024-10-11 08:36:04
合計ジャッジ時間 31,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
50,100 KB
testcase_01 AC 64 ms
50,412 KB
testcase_02 AC 65 ms
50,684 KB
testcase_03 AC 64 ms
50,280 KB
testcase_04 AC 64 ms
50,368 KB
testcase_05 AC 62 ms
50,616 KB
testcase_06 AC 64 ms
50,432 KB
testcase_07 AC 60 ms
50,472 KB
testcase_08 AC 60 ms
50,268 KB
testcase_09 AC 61 ms
50,060 KB
testcase_10 AC 61 ms
50,624 KB
testcase_11 AC 61 ms
50,384 KB
testcase_12 AC 59 ms
50,692 KB
testcase_13 AC 64 ms
50,420 KB
testcase_14 AC 85 ms
50,784 KB
testcase_15 AC 87 ms
50,648 KB
testcase_16 AC 87 ms
50,908 KB
testcase_17 AC 97 ms
51,136 KB
testcase_18 AC 72 ms
50,788 KB
testcase_19 AC 103 ms
51,560 KB
testcase_20 AC 95 ms
51,112 KB
testcase_21 AC 77 ms
50,880 KB
testcase_22 AC 95 ms
51,128 KB
testcase_23 AC 72 ms
50,840 KB
testcase_24 AC 784 ms
62,112 KB
testcase_25 AC 830 ms
63,588 KB
testcase_26 AC 473 ms
60,856 KB
testcase_27 AC 791 ms
64,476 KB
testcase_28 AC 506 ms
61,076 KB
testcase_29 AC 1,032 ms
64,772 KB
testcase_30 AC 475 ms
61,180 KB
testcase_31 AC 358 ms
58,364 KB
testcase_32 AC 1,032 ms
64,284 KB
testcase_33 AC 531 ms
62,036 KB
testcase_34 AC 696 ms
62,160 KB
testcase_35 AC 1,058 ms
64,192 KB
testcase_36 AC 224 ms
55,584 KB
testcase_37 AC 373 ms
58,628 KB
testcase_38 AC 943 ms
64,600 KB
testcase_39 AC 721 ms
62,036 KB
testcase_40 AC 913 ms
63,912 KB
testcase_41 AC 186 ms
54,308 KB
testcase_42 AC 975 ms
64,232 KB
testcase_43 AC 1,008 ms
64,088 KB
testcase_44 AC 1,004 ms
64,416 KB
testcase_45 AC 1,149 ms
64,376 KB
testcase_46 AC 1,027 ms
64,648 KB
testcase_47 AC 1,114 ms
64,580 KB
testcase_48 AC 1,099 ms
64,144 KB
testcase_49 AC 1,044 ms
64,580 KB
testcase_50 AC 1,111 ms
64,996 KB
testcase_51 AC 1,026 ms
64,412 KB
testcase_52 AC 1,055 ms
64,884 KB
testcase_53 AC 1,085 ms
64,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.Arrays;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int d = Integer.parseInt(sa[1]);
		Obj[] arr = new Obj[n];
		for (int i = 0; i < n; i++) {
			Obj o = new Obj();
			o.a = Integer.parseInt(br.readLine());
			o.i = i;
			arr[i] = o;
		}
		br.close();

		Arrays.sort(arr, (o1, o2) -> o2.a - o1.a);
		int j = 1;
		for (int i = 0; i < n; i++) {
			while (j < n && arr[i].a - arr[j].a < d) {
				j++;
			}
			if (j < n && arr[i].a - arr[j].a >= d) {
				arr[i].ans = n - j;
			}
		}

		Arrays.sort(arr, (o1, o2) -> o1.i - o2.i);
		PrintWriter pw = new PrintWriter(System.out);
		for (int i = 0; i < n; i++) {
			pw.println(arr[i].ans);
		}
		pw.flush();
	}

	static class Obj {
		int a, i, ans;
	}
}
0