結果

問題 No.1140 EXPotentiaLLL!
ユーザー shi-moshi-mo
提出日時 2020-10-01 00:50:51
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 142,732 KB
実行使用メモリ 8,588 KB
最終ジャッジ日時 2024-06-22 09:13:58
合計ジャッジ時間 8,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 610 ms
8,516 KB
testcase_01 AC 530 ms
7,464 KB
testcase_02 AC 591 ms
7,424 KB
testcase_03 AC 388 ms
7,368 KB
testcase_04 AC 300 ms
8,016 KB
testcase_05 AC 467 ms
7,748 KB
testcase_06 AC 464 ms
8,224 KB
testcase_07 AC 629 ms
8,588 KB
testcase_08 AC 38 ms
7,364 KB
testcase_09 AC 39 ms
8,492 KB
testcase_10 AC 39 ms
8,132 KB
testcase_11 AC 40 ms
7,620 KB
testcase_12 AC 40 ms
8,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!ulong.gcdImpl`

ソースコード

diff #

import std.stdio;
import std.algorithm;
import std.array;
import std.math;
import std.numeric;

bool[] notPrime;

void main() {
    uint t; readf("%s\n", &t);
    const int PMAX = 5000000;
    notPrime = generateNotPrime(PMAX);

    foreach(i; 0..t) {
        ulong a;
        uint p;
        readf("%s %s\n", &a, &p);
        if (notPrime[p]) {
            writeln("-1");
            continue;
        }
        writeln((1 == gcd(a, p)) ? 1 : 0);
    }
}

bool[] generateNotPrime(uint n) {
    bool[] notPrime = []; notPrime.length = n + 1;

    notPrime[1] = true;
    foreach (i; 2..(n+1)) {
        if (notPrime[i]) { continue; }

        for (uint j = i*2; j <= n; j += i) {
            notPrime[j] = true;
        }
    }
    return notPrime;
}
0