結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,528 KB
testcase_01 AC 12 ms
6,400 KB
testcase_02 AC 12 ms
6,528 KB
testcase_03 AC 12 ms
6,528 KB
testcase_04 AC 12 ms
6,272 KB
testcase_05 AC 12 ms
6,528 KB
testcase_06 AC 12 ms
6,528 KB
testcase_07 AC 11 ms
6,528 KB
testcase_08 AC 12 ms
6,528 KB
testcase_09 AC 11 ms
6,400 KB
testcase_10 AC 11 ms
6,528 KB
testcase_11 AC 11 ms
6,272 KB
testcase_12 AC 12 ms
6,528 KB
testcase_13 AC 11 ms
6,272 KB
testcase_14 AC 15 ms
6,528 KB
testcase_15 AC 14 ms
6,528 KB
testcase_16 AC 15 ms
6,400 KB
testcase_17 AC 17 ms
6,656 KB
testcase_18 AC 12 ms
6,400 KB
testcase_19 AC 18 ms
6,528 KB
testcase_20 AC 17 ms
6,400 KB
testcase_21 AC 14 ms
6,400 KB
testcase_22 AC 16 ms
6,528 KB
testcase_23 AC 12 ms
6,400 KB
testcase_24 AC 991 ms
29,088 KB
testcase_25 AC 1,215 ms
33,784 KB
testcase_26 AC 604 ms
20,980 KB
testcase_27 AC 1,212 ms
33,636 KB
testcase_28 AC 667 ms
21,816 KB
testcase_29 AC 1,423 ms
38,996 KB
testcase_30 AC 667 ms
21,176 KB
testcase_31 AC 398 ms
15,760 KB
testcase_32 AC 1,614 ms
42,024 KB
testcase_33 AC 790 ms
23,084 KB
testcase_34 AC 1,101 ms
30,040 KB
testcase_35 AC 1,715 ms
42,244 KB
testcase_36 AC 170 ms
10,368 KB
testcase_37 AC 441 ms
17,044 KB
testcase_38 AC 1,416 ms
38,544 KB
testcase_39 AC 1,046 ms
30,188 KB
testcase_40 AC 1,328 ms
34,560 KB
testcase_41 AC 97 ms
8,704 KB
testcase_42 AC 1,519 ms
39,348 KB
testcase_43 AC 1,394 ms
38,312 KB
testcase_44 AC 1,684 ms
43,076 KB
testcase_45 AC 1,738 ms
44,608 KB
testcase_46 AC 1,716 ms
43,968 KB
testcase_47 AC 1,769 ms
45,888 KB
testcase_48 AC 1,757 ms
44,356 KB
testcase_49 AC 1,689 ms
41,412 KB
testcase_50 AC 1,726 ms
44,480 KB
testcase_51 AC 1,696 ms
43,460 KB
testcase_52 AC 1,719 ms
44,480 KB
testcase_53 AC 1,724 ms
45,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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