結果

問題 No.1232 2^x = x
ユーザー 37zigen37zigen
提出日時 2019-11-30 00:49:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 523 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 77,964 KB
実行使用メモリ 63,628 KB
最終ジャッジ日時 2024-11-21 03:26:57
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,228 KB
testcase_01 AC 400 ms
60,940 KB
testcase_02 AC 523 ms
63,628 KB
testcase_03 AC 427 ms
62,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//制約侵害のcheck

import java.util.Arrays;
import java.util.Scanner;
import java.math.*;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
    
    void run() {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        if (!(1<=N&&N<=1000)) throw new AssertionError();
        long[] p = new long[N];
        for (int i = 0; i < N; ++i) {
            p[i] = sc.nextLong();
            if (!(2<=p[i]&&p[i]<=1e9)||!BigInteger.valueOf(p[i]).isProbablePrime(20)) throw new AssertionError();
            System.out.println(solve(p[i]));
        }
    }
    
    long solve(long p) {
        if (p!=2)
            return 1-2*p+p*p;
        else
            return 2;
    }

	long pow(long a, long n, long mod) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = a * a % mod) {
			if (n % 2 == 1)
				ret = ret * a % mod;
		}
		return ret;
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0