結果

問題 No.1110 好きな歌
ユーザー trineutrontrineutron
提出日時 2019-10-24 23:27:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 692 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 88,108 KB
最終ジャッジ日時 2024-09-13 10:27:10
合計ジャッジ時間 19,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,460 KB
testcase_01 AC 38 ms
53,224 KB
testcase_02 AC 41 ms
52,564 KB
testcase_03 AC 40 ms
53,592 KB
testcase_04 AC 39 ms
52,372 KB
testcase_05 AC 39 ms
53,244 KB
testcase_06 AC 39 ms
52,556 KB
testcase_07 AC 39 ms
52,704 KB
testcase_08 AC 39 ms
51,772 KB
testcase_09 AC 38 ms
53,164 KB
testcase_10 AC 38 ms
52,480 KB
testcase_11 AC 38 ms
52,292 KB
testcase_12 AC 39 ms
53,300 KB
testcase_13 AC 39 ms
52,728 KB
testcase_14 AC 48 ms
61,408 KB
testcase_15 AC 44 ms
54,696 KB
testcase_16 AC 47 ms
61,300 KB
testcase_17 AC 53 ms
64,264 KB
testcase_18 AC 40 ms
52,208 KB
testcase_19 AC 57 ms
65,888 KB
testcase_20 AC 55 ms
62,304 KB
testcase_21 AC 45 ms
54,524 KB
testcase_22 AC 52 ms
63,276 KB
testcase_23 AC 42 ms
54,972 KB
testcase_24 AC 423 ms
82,508 KB
testcase_25 AC 505 ms
83,856 KB
testcase_26 AC 282 ms
80,588 KB
testcase_27 AC 484 ms
84,276 KB
testcase_28 AC 305 ms
80,904 KB
testcase_29 AC 565 ms
85,676 KB
testcase_30 AC 305 ms
80,764 KB
testcase_31 AC 210 ms
79,248 KB
testcase_32 AC 640 ms
86,692 KB
testcase_33 AC 337 ms
81,660 KB
testcase_34 AC 445 ms
83,404 KB
testcase_35 AC 668 ms
87,600 KB
testcase_36 AC 128 ms
77,472 KB
testcase_37 AC 224 ms
79,328 KB
testcase_38 AC 552 ms
85,700 KB
testcase_39 AC 427 ms
83,176 KB
testcase_40 AC 532 ms
84,936 KB
testcase_41 AC 110 ms
77,172 KB
testcase_42 AC 604 ms
86,124 KB
testcase_43 AC 564 ms
85,340 KB
testcase_44 AC 680 ms
87,740 KB
testcase_45 AC 689 ms
87,348 KB
testcase_46 AC 692 ms
87,616 KB
testcase_47 AC 688 ms
87,872 KB
testcase_48 AC 690 ms
87,728 KB
testcase_49 AC 679 ms
87,968 KB
testcase_50 AC 672 ms
87,564 KB
testcase_51 AC 687 ms
87,600 KB
testcase_52 AC 682 ms
87,168 KB
testcase_53 AC 683 ms
88,108 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