結果

問題 No.1140 EXPotentiaLLL!
ユーザー kokatsukokatsu
提出日時 2022-01-06 21:14:58
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 647 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 209,332 KB
実行使用メモリ 8,868 KB
最終ジャッジ日時 2024-06-22 13:59:38
合計ジャッジ時間 11,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 641 ms
8,096 KB
testcase_01 AC 647 ms
8,292 KB
testcase_02 AC 646 ms
8,504 KB
testcase_03 AC 488 ms
8,868 KB
testcase_04 AC 394 ms
8,752 KB
testcase_05 AC 581 ms
8,272 KB
testcase_06 AC 557 ms
7,840 KB
testcase_07 AC 647 ms
8,788 KB
testcase_08 AC 85 ms
8,092 KB
testcase_09 AC 85 ms
8,004 KB
testcase_10 AC 84 ms
7,684 KB
testcase_11 AC 84 ms
7,980 KB
testcase_12 AC 86 ms
7,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

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

    long M = 5 * 10 ^^ 6;
    long S = M.to!real.sqrt.floor.to!long;
    auto sieve = iota(0L, M+1).map!(i => i == 2 || (i > 2 && i % 2 == 1)).array;
    foreach (i; iota(3, S+1, 2)) {
        if (!sieve[i]) {
            continue;
        }

        foreach (j; iota(i*i, M+1, i)) {
            sieve[j] = false;
        }
    }

    foreach (_; 0 .. T) {
        long A, P;
        readf("%d %d\n", A, P);

        long res = -1;
        if (sieve[P]) res = (A % P == 0 ? 0 : 1);

        res.writeln;
    }
}
0