結果

問題 No.1110 好きな歌
ユーザー trineutrontrineutron
提出日時 2019-10-23 10:15:59
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,342 ms / 5,000 ms
コード長 206 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 76,460 KB
実行使用メモリ 148,764 KB
最終ジャッジ日時 2024-09-13 10:22:06
合計ジャッジ時間 57,267 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,432 KB
testcase_01 AC 72 ms
75,556 KB
testcase_02 AC 73 ms
75,264 KB
testcase_03 AC 72 ms
75,292 KB
testcase_04 AC 72 ms
75,312 KB
testcase_05 AC 71 ms
75,284 KB
testcase_06 AC 72 ms
75,264 KB
testcase_07 AC 72 ms
75,684 KB
testcase_08 AC 72 ms
75,784 KB
testcase_09 AC 72 ms
75,656 KB
testcase_10 AC 72 ms
75,300 KB
testcase_11 AC 73 ms
75,428 KB
testcase_12 AC 73 ms
75,780 KB
testcase_13 AC 74 ms
75,180 KB
testcase_14 AC 90 ms
77,812 KB
testcase_15 AC 82 ms
77,360 KB
testcase_16 AC 85 ms
77,472 KB
testcase_17 AC 92 ms
77,812 KB
testcase_18 AC 74 ms
75,432 KB
testcase_19 AC 94 ms
77,704 KB
testcase_20 AC 92 ms
77,864 KB
testcase_21 AC 85 ms
77,344 KB
testcase_22 AC 91 ms
77,460 KB
testcase_23 AC 81 ms
76,844 KB
testcase_24 AC 1,388 ms
119,584 KB
testcase_25 AC 1,672 ms
128,612 KB
testcase_26 AC 887 ms
104,644 KB
testcase_27 AC 1,649 ms
127,952 KB
testcase_28 AC 997 ms
107,656 KB
testcase_29 AC 1,934 ms
135,812 KB
testcase_30 AC 985 ms
107,524 KB
testcase_31 AC 643 ms
96,756 KB
testcase_32 AC 2,134 ms
142,492 KB
testcase_33 AC 1,114 ms
112,112 KB
testcase_34 AC 1,482 ms
123,624 KB
testcase_35 AC 2,286 ms
148,248 KB
testcase_36 AC 321 ms
85,932 KB
testcase_37 AC 688 ms
97,972 KB
testcase_38 AC 1,867 ms
135,540 KB
testcase_39 AC 1,426 ms
121,276 KB
testcase_40 AC 1,830 ms
134,240 KB
testcase_41 AC 228 ms
83,164 KB
testcase_42 AC 2,084 ms
141,192 KB
testcase_43 AC 1,911 ms
135,412 KB
testcase_44 AC 2,257 ms
148,636 KB
testcase_45 AC 2,289 ms
147,776 KB
testcase_46 AC 2,315 ms
148,384 KB
testcase_47 AC 2,329 ms
148,116 KB
testcase_48 AC 2,319 ms
148,252 KB
testcase_49 AC 2,251 ms
148,764 KB
testcase_50 AC 2,342 ms
147,860 KB
testcase_51 AC 2,287 ms
148,504 KB
testcase_52 AC 2,314 ms
148,132 KB
testcase_53 AC 2,322 ms
148,540 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