結果
| 問題 | No.1140 EXPotentiaLLL! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-01 13:39:17 |
| 言語 | D (dmd 2.109.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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 12 |
ソースコード
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;
}