結果

問題 No.1110 好きな歌
ユーザー tentententen
提出日時 2020-10-15 16:22:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,344 ms / 5,000 ms
コード長 913 bytes
コンパイル時間 2,551 ms
コンパイル使用メモリ 77,856 KB
実行使用メモリ 64,988 KB
最終ジャッジ日時 2024-07-20 19:47:25
合計ジャッジ時間 42,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,256 KB
testcase_01 AC 143 ms
41,104 KB
testcase_02 AC 138 ms
41,200 KB
testcase_03 AC 131 ms
41,064 KB
testcase_04 AC 132 ms
41,280 KB
testcase_05 AC 136 ms
41,092 KB
testcase_06 AC 131 ms
41,368 KB
testcase_07 AC 130 ms
41,148 KB
testcase_08 AC 133 ms
41,160 KB
testcase_09 AC 120 ms
40,084 KB
testcase_10 AC 130 ms
41,096 KB
testcase_11 AC 139 ms
41,144 KB
testcase_12 AC 136 ms
41,288 KB
testcase_13 AC 133 ms
40,828 KB
testcase_14 AC 189 ms
41,836 KB
testcase_15 AC 175 ms
41,824 KB
testcase_16 AC 183 ms
42,012 KB
testcase_17 AC 194 ms
42,008 KB
testcase_18 AC 146 ms
41,468 KB
testcase_19 AC 198 ms
42,344 KB
testcase_20 AC 192 ms
42,100 KB
testcase_21 AC 182 ms
41,744 KB
testcase_22 AC 191 ms
42,176 KB
testcase_23 AC 150 ms
41,620 KB
testcase_24 AC 962 ms
61,404 KB
testcase_25 AC 1,076 ms
62,356 KB
testcase_26 AC 734 ms
51,092 KB
testcase_27 AC 1,081 ms
62,304 KB
testcase_28 AC 816 ms
50,760 KB
testcase_29 AC 1,115 ms
63,048 KB
testcase_30 AC 798 ms
50,444 KB
testcase_31 AC 639 ms
49,692 KB
testcase_32 AC 1,197 ms
62,400 KB
testcase_33 AC 831 ms
55,436 KB
testcase_34 AC 995 ms
62,228 KB
testcase_35 AC 1,269 ms
63,360 KB
testcase_36 AC 439 ms
48,164 KB
testcase_37 AC 687 ms
49,548 KB
testcase_38 AC 1,162 ms
63,980 KB
testcase_39 AC 999 ms
61,812 KB
testcase_40 AC 1,096 ms
62,164 KB
testcase_41 AC 351 ms
47,784 KB
testcase_42 AC 1,152 ms
62,224 KB
testcase_43 AC 1,115 ms
64,212 KB
testcase_44 AC 1,257 ms
63,400 KB
testcase_45 AC 1,329 ms
63,400 KB
testcase_46 AC 1,309 ms
62,960 KB
testcase_47 AC 1,287 ms
64,060 KB
testcase_48 AC 1,308 ms
64,216 KB
testcase_49 AC 1,256 ms
62,764 KB
testcase_50 AC 1,344 ms
64,112 KB
testcase_51 AC 1,259 ms
62,904 KB
testcase_52 AC 1,288 ms
63,136 KB
testcase_53 AC 1,317 ms
64,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		Tune[] arr = new Tune[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = new Tune(i, sc.nextInt());
		}
		Arrays.sort(arr);
		int[] ans = new int[n];
		int left = 0;
		for (int i = 0; i < n; i++) {
		    while (arr[i].value - arr[left].value >= d) {
		        left++;
		    }
		    ans[arr[i].idx] = left;
		}
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    sb.append(ans[i]).append("\n");
		}
		System.out.print(sb);
	}
	
	static class Tune implements Comparable<Tune> {
	    int idx;
	    int value;
	    
	    public Tune(int idx, int value) {
	        this.idx = idx;
	        this.value = value;
	    }
	    
	    public int compareTo(Tune another) {
	        return value - another.value;
	    }
	}
	
}
0