結果

問題 No.1110 好きな歌
ユーザー trineutrontrineutron
提出日時 2019-10-23 10:14:23
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,795 ms / 5,000 ms
コード長 206 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 46,040 KB
最終ジャッジ日時 2024-09-13 10:18:49
合計ジャッジ時間 40,942 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 12 ms
6,940 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 11 ms
6,944 KB
testcase_13 AC 11 ms
6,940 KB
testcase_14 AC 15 ms
6,944 KB
testcase_15 AC 14 ms
6,944 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 17 ms
6,940 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 17 ms
6,940 KB
testcase_20 AC 16 ms
6,944 KB
testcase_21 AC 14 ms
6,940 KB
testcase_22 AC 17 ms
6,944 KB
testcase_23 AC 13 ms
6,940 KB
testcase_24 AC 1,000 ms
29,052 KB
testcase_25 AC 1,239 ms
33,784 KB
testcase_26 AC 599 ms
21,116 KB
testcase_27 AC 1,213 ms
33,604 KB
testcase_28 AC 692 ms
21,788 KB
testcase_29 AC 1,429 ms
39,060 KB
testcase_30 AC 686 ms
21,152 KB
testcase_31 AC 410 ms
15,852 KB
testcase_32 AC 1,620 ms
42,116 KB
testcase_33 AC 792 ms
23,136 KB
testcase_34 AC 1,100 ms
30,096 KB
testcase_35 AC 1,711 ms
42,400 KB
testcase_36 AC 171 ms
10,112 KB
testcase_37 AC 443 ms
17,124 KB
testcase_38 AC 1,402 ms
38,460 KB
testcase_39 AC 1,049 ms
30,388 KB
testcase_40 AC 1,340 ms
34,624 KB
testcase_41 AC 96 ms
8,704 KB
testcase_42 AC 1,537 ms
39,320 KB
testcase_43 AC 1,406 ms
38,352 KB
testcase_44 AC 1,737 ms
42,840 KB
testcase_45 AC 1,743 ms
44,636 KB
testcase_46 AC 1,727 ms
43,996 KB
testcase_47 AC 1,795 ms
45,912 KB
testcase_48 AC 1,785 ms
44,380 KB
testcase_49 AC 1,695 ms
41,560 KB
testcase_50 AC 1,755 ms
44,376 KB
testcase_51 AC 1,708 ms
43,608 KB
testcase_52 AC 1,725 ms
44,504 KB
testcase_53 AC 1,785 ms
46,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n,d=map(int,raw_input().split())
a=[(input(),i)for i in range(n)]
a.sort()
ans=[0]*n
for i in range(n):ans[a[i][1]]=bisect.bisect_left(a,(a[i][0]-d,2000000000))
for i in range(n):print(ans[i])
0