結果

問題 No.1110 好きな歌
ユーザー kokatsukokatsu
提出日時 2021-12-16 21:08:51
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 212 ms / 5,000 ms
コード長 256 bytes
コンパイル時間 2,009 ms
コンパイル使用メモリ 204,352 KB
実行使用メモリ 5,804 KB
最終ジャッジ日時 2023-09-04 15:23:21
合計ジャッジ時間 9,842 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 2 ms
4,384 KB
testcase_06 AC 2 ms
4,388 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,384 KB
testcase_09 AC 1 ms
4,384 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,384 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,384 KB
testcase_18 AC 1 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 1 ms
4,380 KB
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 118 ms
4,384 KB
testcase_25 AC 143 ms
4,392 KB
testcase_26 AC 76 ms
4,384 KB
testcase_27 AC 141 ms
5,804 KB
testcase_28 AC 80 ms
4,380 KB
testcase_29 AC 171 ms
4,624 KB
testcase_30 AC 77 ms
4,384 KB
testcase_31 AC 48 ms
4,388 KB
testcase_32 AC 188 ms
4,896 KB
testcase_33 AC 87 ms
4,384 KB
testcase_34 AC 122 ms
4,380 KB
testcase_35 AC 184 ms
4,824 KB
testcase_36 AC 21 ms
4,380 KB
testcase_37 AC 56 ms
4,384 KB
testcase_38 AC 169 ms
4,532 KB
testcase_39 AC 125 ms
4,380 KB
testcase_40 AC 145 ms
4,632 KB
testcase_41 AC 13 ms
4,380 KB
testcase_42 AC 169 ms
4,580 KB
testcase_43 AC 167 ms
4,552 KB
testcase_44 AC 189 ms
4,824 KB
testcase_45 AC 201 ms
4,824 KB
testcase_46 AC 196 ms
4,852 KB
testcase_47 AC 212 ms
4,884 KB
testcase_48 AC 199 ms
4,752 KB
testcase_49 AC 182 ms
4,824 KB
testcase_50 AC 198 ms
4,812 KB
testcase_51 AC 193 ms
4,840 KB
testcase_52 AC 201 ms
4,860 KB
testcase_53 AC 210 ms
4,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, D;
    readf("%d %d\n", N, D);

    auto A = new int[](N);
    foreach (i; 0 .. N) {
        readf("%d\n", A[i]);
    }

    auto B = A.dup.sort;
    foreach (a; A) {
        B.lowerBound(a-D+1).length.writeln;
    }
}
0