結果

問題 No.1140 EXPotentiaLLL!
ユーザー shi-moshi-mo
提出日時 2020-10-01 13:39:17
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 1,401 ms
コンパイル使用メモリ 145,188 KB
実行使用メモリ 8,792 KB
最終ジャッジ日時 2024-06-22 09:14:21
合計ジャッジ時間 7,793 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 574 ms
7,720 KB
testcase_01 AC 520 ms
8,624 KB
testcase_02 AC 579 ms
8,208 KB
testcase_03 AC 393 ms
7,436 KB
testcase_04 AC 312 ms
7,428 KB
testcase_05 AC 472 ms
8,368 KB
testcase_06 AC 449 ms
7,868 KB
testcase_07 AC 583 ms
8,792 KB
testcase_08 AC 38 ms
7,164 KB
testcase_09 AC 38 ms
8,548 KB
testcase_10 AC 38 ms
7,656 KB
testcase_11 AC 37 ms
7,776 KB
testcase_12 AC 37 ms
7,240 KB
権限があれば一括ダウンロードができます

ソースコード

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((0 != 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