結果

問題 No.2260 Adic Sum
ユーザー DaylightDaylight
提出日時 2023-05-09 12:02:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 3,332 bytes
コンパイル時間 2,770 ms
コンパイル使用メモリ 233,980 KB
実行使用メモリ 24,780 KB
最終ジャッジ日時 2024-06-22 17:54:34
合計ジャッジ時間 6,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 20 ms
8,716 KB
testcase_15 AC 28 ms
12,252 KB
testcase_16 AC 18 ms
8,136 KB
testcase_17 AC 31 ms
12,644 KB
testcase_18 AC 204 ms
24,152 KB
testcase_19 AC 214 ms
24,128 KB
testcase_20 AC 151 ms
24,360 KB
testcase_21 AC 152 ms
24,044 KB
testcase_22 AC 132 ms
23,980 KB
testcase_23 AC 101 ms
23,808 KB
testcase_24 AC 213 ms
24,780 KB
testcase_25 AC 41 ms
14,408 KB
testcase_26 AC 40 ms
13,992 KB
testcase_27 AC 40 ms
14,684 KB
testcase_28 AC 38 ms
14,472 KB
testcase_29 AC 39 ms
15,328 KB
testcase_30 AC 45 ms
14,736 KB
testcase_31 AC 195 ms
19,308 KB
testcase_32 AC 195 ms
19,476 KB
testcase_33 AC 46 ms
14,016 KB
testcase_34 AC 81 ms
21,840 KB
testcase_35 AC 310 ms
24,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

public import std;

DList!string scan_buffer;
DList!char char_buffer;
static this() {
    scan_buffer = DList!(string)();
    char_buffer = DList!(char)();
}

void cin()() {

}

void cin(T, A...)(ref T a, ref A tail) {
    import std.traits : isArray;

    static if (typeof(a).stringof == "string") {
        if (!char_buffer.empty) {
            a = char_buffer.array.map!(x => x.to!string).join();
            char_buffer.clear();
        } else {
            while (scan_buffer.empty) {
                foreach (t; readln.split) {
                    if (t.length == 0) {
                        continue;
                    }
                    scan_buffer.insert(t);
                }
            }
            auto token = scan_buffer.front;
            scan_buffer.removeFront();
            a = token;
        }
    } else static if (typeof(a).stringof == "char") {
        if (!char_buffer.empty) {
            a = char_buffer.front();
            char_buffer.removeFront();
        } else {
            while (scan_buffer.empty) {
                foreach (t; readln.split) {
                    if (t.length == 0) {
                        continue;
                    }
                    scan_buffer.insert(t);
                }
            }
            auto token = scan_buffer.front;
            scan_buffer.removeFront();
            a = token[0];
            if (token.length > 1) {
                foreach (c; token[1 .. $]) {
                    char_buffer.insertBack(c);
                }
            }
        }
    } else static if (typeof(a).stringof == "char[]") {
        if (a.length == 0) {
            string token;
            cin(token);
            foreach (c; token) {
                a ~= c;
            }
        } else {
            foreach (ref v; a) {
                cin(v);
            }
        }
    } else static if (isArray!(typeof(a))) {
        foreach (ref v; a) {
            cin(v);
        }
    } else static if (isTuple!(typeof(a))) {
        foreach (i, _; a) {
            cin(a[i]);
        }
    } else {
        if (!char_buffer.empty) {
            writeln(char_buffer.array.map!(x => x.to!string));
            a = char_buffer.array.map!(x => x.to!string).join().to!T;
            char_buffer.clear();
        } else {
            while (scan_buffer.empty) {
                foreach (t; readln.split) {
                    if (t.length == 0) {
                        continue;
                    }
                    scan_buffer.insert(t);
                }
            }
            auto token = scan_buffer.front;
            scan_buffer.removeFront();
            a = token.to!T;
        }
    }
    cin(tail);
}

bool chmin(T)(ref T a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}

bool chmax(T)(ref T a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}

alias PQueue(T = long, alias less = "a<b") = BinaryHeap!(Array!T, less);

void main() {
    long N, P;
    cin(N, P);
    auto A = new int[](N);
    cin(A);
    int M = A.maxElement;
    long nP = P;
    long ans = 0;
    while (nP <= M) {
        int[int] map;
        foreach (a; A) {
            ans += map.get(a % nP, 0);
            map[a % nP] = map.get(a % nP, 0) + 1;
        }
        nP *= P;
    }
    ans.writeln;
}
0