結果

問題 No.1110 好きな歌
ユーザー O2MTO2MT
提出日時 2020-08-15 02:57:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,267 ms / 5,000 ms
コード長 338 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 37,144 KB
最終ジャッジ日時 2024-10-10 17:06:24
合計ジャッジ時間 28,574 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 36 ms
10,624 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 33 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 653 ms
24,160 KB
testcase_25 AC 808 ms
25,892 KB
testcase_26 AC 405 ms
19,376 KB
testcase_27 AC 776 ms
26,136 KB
testcase_28 AC 439 ms
18,804 KB
testcase_29 AC 928 ms
29,128 KB
testcase_30 AC 446 ms
18,164 KB
testcase_31 AC 309 ms
16,760 KB
testcase_32 AC 1,051 ms
34,964 KB
testcase_33 AC 541 ms
21,848 KB
testcase_34 AC 713 ms
24,232 KB
testcase_35 AC 1,060 ms
33,240 KB
testcase_36 AC 134 ms
12,500 KB
testcase_37 AC 314 ms
17,716 KB
testcase_38 AC 918 ms
28,916 KB
testcase_39 AC 690 ms
25,588 KB
testcase_40 AC 859 ms
24,472 KB
testcase_41 AC 87 ms
12,156 KB
testcase_42 AC 1,005 ms
32,964 KB
testcase_43 AC 931 ms
28,608 KB
testcase_44 AC 1,267 ms
33,432 KB
testcase_45 AC 1,134 ms
35,480 KB
testcase_46 AC 1,137 ms
34,712 KB
testcase_47 AC 1,180 ms
37,144 KB
testcase_48 AC 1,267 ms
35,096 KB
testcase_49 AC 1,176 ms
33,248 KB
testcase_50 AC 1,177 ms
34,964 KB
testcase_51 AC 1,078 ms
33,940 KB
testcase_52 AC 1,117 ms
35,096 KB
testcase_53 AC 1,149 ms
36,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())
A = {}
l = [0]*N

for i in range(N):
  a = int(input())
  A.update({a:0})
  l[i] = a

ls = sorted(l)
count,k = 0,N-1
for i in range(N-1,-1,-1):
  count = 0
  for j in range(k,-1,-1):
    if ls[i] - ls[j] >= D:
      k = j
      count = j+1
      break
  A[ls[i]] = count

for i in range(N):
  print(A[l[i]])
0