結果

問題 No.1140 EXPotentiaLLL!
ユーザー face4face4
提出日時 2020-08-07 09:16:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,772 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 66,096 KB
最終ジャッジ日時 2024-09-22 17:25:07
合計ジャッジ時間 20,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,686 ms
65,580 KB
testcase_01 AC 1,690 ms
65,492 KB
testcase_02 AC 1,667 ms
65,308 KB
testcase_03 AC 1,498 ms
65,380 KB
testcase_04 AC 1,292 ms
65,636 KB
testcase_05 AC 1,690 ms
65,968 KB
testcase_06 AC 1,590 ms
65,396 KB
testcase_07 AC 1,772 ms
66,096 KB
testcase_08 AC 120 ms
55,492 KB
testcase_09 AC 121 ms
55,416 KB
testcase_10 AC 119 ms
55,388 KB
testcase_11 AC 123 ms
55,560 KB
testcase_12 AC 118 ms
55,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        boolean nonp[] = new boolean[5000001];
        nonp[1] = true;
        for(int i = 2; i < 5000001; i++){
            if(nonp[i]) continue;
            for(int j = i+i; j < 5000001; j += i){
                nonp[j] = true;
            }
        }
        int t = Integer.parseInt(br.readLine());
        while(t-- > 0){
            String[] line = br.readLine().split(" ");
            long a = Long.parseLong(line[0]);
            int p = Integer.parseInt(line[1]);
            System.out.println(nonp[p] ? -1 : a%p==0 ? 0 : 1);
        }
    }
}
0