結果

問題 No.1110 好きな歌
ユーザー tatt61880tatt61880
提出日時 2020-07-10 21:39:54
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 425 ms / 5,000 ms
コード長 452 bytes
コンパイル時間 2,322 ms
コンパイル使用メモリ 148,348 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-09-16 11:14:46
合計ジャッジ時間 15,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 231 ms
11,264 KB
testcase_25 AC 290 ms
12,800 KB
testcase_26 AC 139 ms
8,448 KB
testcase_27 AC 285 ms
12,672 KB
testcase_28 AC 156 ms
9,088 KB
testcase_29 AC 343 ms
14,208 KB
testcase_30 AC 155 ms
9,088 KB
testcase_31 AC 90 ms
7,040 KB
testcase_32 AC 390 ms
15,232 KB
testcase_33 AC 180 ms
9,856 KB
testcase_34 AC 256 ms
11,904 KB
testcase_35 AC 410 ms
16,256 KB
testcase_36 AC 38 ms
6,944 KB
testcase_37 AC 102 ms
7,296 KB
testcase_38 AC 330 ms
13,824 KB
testcase_39 AC 246 ms
11,520 KB
testcase_40 AC 315 ms
13,824 KB
testcase_41 AC 22 ms
6,944 KB
testcase_42 AC 373 ms
14,976 KB
testcase_43 AC 336 ms
14,080 KB
testcase_44 AC 413 ms
16,256 KB
testcase_45 AC 420 ms
16,384 KB
testcase_46 AC 418 ms
16,384 KB
testcase_47 AC 425 ms
16,256 KB
testcase_48 AC 416 ms
16,384 KB
testcase_49 AC 406 ms
16,384 KB
testcase_50 AC 415 ms
16,384 KB
testcase_51 AC 408 ms
16,384 KB
testcase_52 AC 416 ms
16,384 KB
testcase_53 AC 419 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var d: int :: cui@inputInt()
	var a: []int :: #[n]int
	for i(0, n - 1)
		do a[i] :: cui@inputInt()
	end for
	var b: []int :: ##a
	do b.sort()
	
	var r: int :: 0
	var mp: dict<int, int> :: #dict<int, int>
	for i(0, n - 1)
		while(r <> i & b[r] + d <= b[i])
			do r :+ 1
		end while
		var ans: int :: r
		do mp.add(b[i], ans)
	end for
	
	for i(0, n - 1)
		do cui@print("\{mp.get(a[i], &)}\n")
	end for
end func
0