結果

問題 No.613 Solitude by the window
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-22 01:40:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 78,136 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-12-14 06:09:34
合計ジャッジ時間 6,717 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,320 KB
testcase_01 AC 137 ms
54,220 KB
testcase_02 AC 140 ms
54,256 KB
testcase_03 AC 138 ms
53,988 KB
testcase_04 AC 137 ms
54,340 KB
testcase_05 AC 138 ms
54,260 KB
testcase_06 AC 140 ms
54,168 KB
testcase_07 AC 139 ms
54,360 KB
testcase_08 AC 140 ms
53,856 KB
testcase_09 AC 139 ms
54,016 KB
testcase_10 AC 140 ms
54,016 KB
testcase_11 AC 141 ms
54,028 KB
testcase_12 AC 140 ms
54,136 KB
testcase_13 AC 136 ms
54,024 KB
testcase_14 AC 136 ms
53,992 KB
testcase_15 AC 136 ms
54,184 KB
testcase_16 AC 140 ms
54,256 KB
testcase_17 AC 134 ms
54,440 KB
testcase_18 AC 138 ms
54,240 KB
testcase_19 AC 133 ms
54,064 KB
testcase_20 AC 141 ms
54,120 KB
testcase_21 AC 138 ms
53,884 KB
testcase_22 AC 134 ms
54,000 KB
testcase_23 AC 137 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    static void myAssert(boolean e){
        if(!e)throw new RuntimeException("assertion sippai");
    }
    static boolean isPrime(long x){
        if(x<=1)return false;
        for(long i=2;i*i<=x;++i)if(x%i==0)return false;
        return true;
    }
    static long powerMod(long x, long exponent,long m) {
	long prod = 1;
	for (int i = 63; i >= 0; --i) {
	    prod = (prod * prod) % m;
	    if ((exponent & 1L << i) != 0) {
		prod = (prod * x) % m;
	    }
	}
	return prod;
    }
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        long n=scan.nextLong();
        long m=scan.nextLong();
        myAssert(n>=1);
        myAssert(n<=1000000000000000000L);
        myAssert(m>=2);
        myAssert(m<=1100000000);
        myAssert(isPrime(m));
        long p=m==2||m%12==1||m%12==11?m-1:m+1;
        long e=powerMod(2,n,p);
        long x=1,y=0;
        for(int i=31;i>=0;--i){
            long z=(x*x+3*y*y)%m,w=2*x*y%m;
            x=z;y=w;
            if((e&1L<<i)!=0){
                z=(2*x+3*y)%m;w=(x+2*y)%m;
                x=z;y=w;
            }
        }
        System.out.println((2*x+m-2)%m);
    }
}
0