結果

問題 No.1110 好きな歌
ユーザー now4estnow4est
提出日時 2020-07-11 11:42:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 5,000 ms
コード長 138 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 118,392 KB
最終ジャッジ日時 2024-04-20 22:31:25
合計ジャッジ時間 9,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,248 KB
testcase_01 AC 39 ms
52,364 KB
testcase_02 AC 41 ms
53,652 KB
testcase_03 AC 38 ms
52,824 KB
testcase_04 AC 38 ms
52,952 KB
testcase_05 AC 38 ms
52,384 KB
testcase_06 AC 37 ms
53,884 KB
testcase_07 AC 39 ms
52,120 KB
testcase_08 AC 38 ms
52,264 KB
testcase_09 AC 38 ms
53,644 KB
testcase_10 AC 39 ms
53,448 KB
testcase_11 AC 39 ms
52,088 KB
testcase_12 AC 38 ms
52,788 KB
testcase_13 AC 38 ms
52,492 KB
testcase_14 AC 45 ms
61,268 KB
testcase_15 AC 45 ms
59,844 KB
testcase_16 AC 47 ms
60,428 KB
testcase_17 AC 48 ms
60,772 KB
testcase_18 AC 38 ms
52,380 KB
testcase_19 AC 47 ms
61,480 KB
testcase_20 AC 46 ms
60,212 KB
testcase_21 AC 45 ms
60,112 KB
testcase_22 AC 47 ms
60,020 KB
testcase_23 AC 42 ms
58,788 KB
testcase_24 AC 160 ms
100,868 KB
testcase_25 AC 178 ms
105,092 KB
testcase_26 AC 125 ms
90,492 KB
testcase_27 AC 180 ms
104,600 KB
testcase_28 AC 123 ms
93,008 KB
testcase_29 AC 213 ms
109,392 KB
testcase_30 AC 113 ms
92,944 KB
testcase_31 AC 97 ms
84,252 KB
testcase_32 AC 224 ms
113,656 KB
testcase_33 AC 120 ms
95,796 KB
testcase_34 AC 172 ms
101,656 KB
testcase_35 AC 198 ms
118,392 KB
testcase_36 AC 72 ms
78,644 KB
testcase_37 AC 109 ms
85,428 KB
testcase_38 AC 212 ms
109,408 KB
testcase_39 AC 170 ms
101,096 KB
testcase_40 AC 163 ms
108,752 KB
testcase_41 AC 70 ms
76,472 KB
testcase_42 AC 192 ms
113,528 KB
testcase_43 AC 215 ms
108,932 KB
testcase_44 AC 213 ms
118,004 KB
testcase_45 AC 245 ms
117,900 KB
testcase_46 AC 222 ms
118,176 KB
testcase_47 AC 250 ms
117,892 KB
testcase_48 AC 228 ms
118,112 KB
testcase_49 AC 191 ms
118,312 KB
testcase_50 AC 227 ms
117,488 KB
testcase_51 AC 216 ms
117,680 KB
testcase_52 AC 227 ms
117,496 KB
testcase_53 AC 251 ms
118,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
_,D,*A = map(int,open(0).read().split())
B = sorted(A)
print(*[bisect_right(B, a-D) for a in A], sep='\n')
0