結果

問題 No.1110 好きな歌
ユーザー trineutrontrineutron
提出日時 2019-10-24 23:26:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,174 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 41,996 KB
最終ジャッジ日時 2024-09-13 10:25:05
合計ジャッジ時間 28,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 33 ms
10,752 KB
testcase_20 AC 33 ms
10,880 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 669 ms
28,672 KB
testcase_25 AC 801 ms
32,452 KB
testcase_26 AC 409 ms
22,152 KB
testcase_27 AC 786 ms
32,304 KB
testcase_28 AC 437 ms
23,196 KB
testcase_29 AC 965 ms
36,388 KB
testcase_30 AC 425 ms
22,688 KB
testcase_31 AC 268 ms
18,212 KB
testcase_32 AC 1,068 ms
39,016 KB
testcase_33 AC 486 ms
24,576 KB
testcase_34 AC 700 ms
29,684 KB
testcase_35 AC 1,076 ms
39,916 KB
testcase_36 AC 121 ms
14,080 KB
testcase_37 AC 297 ms
19,212 KB
testcase_38 AC 959 ms
36,124 KB
testcase_39 AC 717 ms
29,600 KB
testcase_40 AC 836 ms
33,620 KB
testcase_41 AC 82 ms
12,672 KB
testcase_42 AC 990 ms
37,132 KB
testcase_43 AC 955 ms
35,940 KB
testcase_44 AC 1,081 ms
40,140 KB
testcase_45 AC 1,159 ms
41,164 KB
testcase_46 AC 1,134 ms
40,716 KB
testcase_47 AC 1,162 ms
41,936 KB
testcase_48 AC 1,142 ms
41,040 KB
testcase_49 AC 1,040 ms
39,912 KB
testcase_50 AC 1,143 ms
40,968 KB
testcase_51 AC 1,116 ms
40,396 KB
testcase_52 AC 1,149 ms
40,972 KB
testcase_53 AC 1,174 ms
41,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
a = sorted([(int(input()), i) for i in range(n)])
ans = [0] * n
index = 0

for i in range(n):
    while (a[i][0] - a[index][0] >= d): index = index + 1
    ans[a[i][1]] = index

for i in range(n):
    print(ans[i])
0