結果
問題 |
No.1140 EXPotentiaLLL!
|
ユーザー |
|
提出日時 | 2020-10-01 00:50:51 |
言語 | D (dmd 2.109.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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 12 |
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/std/numeric.d(2999): Warning: cannot inline function `std.numeric.gcdImpl!ulong.gcdImpl`
ソースコード
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; }