結果

問題 No.1110 好きな歌
ユーザー horiesinitihoriesiniti
提出日時 2023-02-15 19:37:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 467 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 37,376 KB
最終ジャッジ日時 2024-07-18 03:25:31
合計ジャッジ時間 16,331 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,288 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 77 ms
12,288 KB
testcase_05 AC 76 ms
12,288 KB
testcase_06 AC 82 ms
12,288 KB
testcase_07 AC 79 ms
12,288 KB
testcase_08 AC 80 ms
12,288 KB
testcase_09 AC 78 ms
12,288 KB
testcase_10 AC 80 ms
12,160 KB
testcase_11 AC 83 ms
12,416 KB
testcase_12 AC 79 ms
12,288 KB
testcase_13 AC 81 ms
12,288 KB
testcase_14 AC 81 ms
12,288 KB
testcase_15 AC 83 ms
12,160 KB
testcase_16 AC 82 ms
12,160 KB
testcase_17 AC 84 ms
12,288 KB
testcase_18 AC 80 ms
12,288 KB
testcase_19 AC 83 ms
12,160 KB
testcase_20 AC 83 ms
12,160 KB
testcase_21 AC 78 ms
12,416 KB
testcase_22 AC 79 ms
12,416 KB
testcase_23 AC 76 ms
12,160 KB
testcase_24 AC 280 ms
29,568 KB
testcase_25 AC 336 ms
33,828 KB
testcase_26 AC 220 ms
24,320 KB
testcase_27 AC 346 ms
33,440 KB
testcase_28 AC 223 ms
26,496 KB
testcase_29 AC 395 ms
33,920 KB
testcase_30 AC 215 ms
26,496 KB
testcase_31 AC 156 ms
18,432 KB
testcase_32 AC 418 ms
35,968 KB
testcase_33 AC 244 ms
28,160 KB
testcase_34 AC 299 ms
30,208 KB
testcase_35 AC 425 ms
37,120 KB
testcase_36 AC 112 ms
15,488 KB
testcase_37 AC 170 ms
19,200 KB
testcase_38 AC 361 ms
33,664 KB
testcase_39 AC 305 ms
29,824 KB
testcase_40 AC 351 ms
33,408 KB
testcase_41 AC 100 ms
13,312 KB
testcase_42 AC 398 ms
35,072 KB
testcase_43 AC 371 ms
33,920 KB
testcase_44 AC 439 ms
37,120 KB
testcase_45 AC 455 ms
37,248 KB
testcase_46 AC 449 ms
37,248 KB
testcase_47 AC 467 ms
37,376 KB
testcase_48 AC 458 ms
37,120 KB
testcase_49 AC 445 ms
37,248 KB
testcase_50 AC 452 ms
37,120 KB
testcase_51 AC 446 ms
36,992 KB
testcase_52 AC 459 ms
37,248 KB
testcase_53 AC 461 ms
37,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - ans
Syntax OK

ソースコード

diff #

n,d=gets.split(" ").map{|e| e.to_i}
xs=readlines.map{|e| e.to_i}
xs2=xs.sort
ans={}
p1=0
p2=0
c1=0
hs={}
while p1<n do
	if xs2[p2]<=xs2[p1]-d then
		c1+=1
		p2+=1
	else
		hs[xs2[p1]]=c1
		p1+=1
	end
end
xs.each{|x|
	puts hs[x]
}
0