結果

問題 No.613 Solitude by the window
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-02-27 02:50:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 77,188 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-05-04 04:36:09
合計ジャッジ時間 5,527 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,552 KB
testcase_01 AC 107 ms
41,360 KB
testcase_02 AC 110 ms
41,664 KB
testcase_03 AC 116 ms
41,132 KB
testcase_04 AC 116 ms
41,348 KB
testcase_05 AC 118 ms
41,392 KB
testcase_06 AC 119 ms
41,420 KB
testcase_07 AC 117 ms
41,120 KB
testcase_08 AC 95 ms
41,528 KB
testcase_09 AC 110 ms
41,476 KB
testcase_10 AC 102 ms
41,532 KB
testcase_11 AC 110 ms
41,296 KB
testcase_12 AC 100 ms
41,400 KB
testcase_13 AC 101 ms
41,292 KB
testcase_14 AC 110 ms
41,380 KB
testcase_15 AC 109 ms
41,536 KB
testcase_16 AC 109 ms
39,888 KB
testcase_17 AC 104 ms
41,512 KB
testcase_18 AC 109 ms
41,248 KB
testcase_19 AC 118 ms
41,536 KB
testcase_20 AC 108 ms
41,336 KB
testcase_21 AC 106 ms
40,384 KB
testcase_22 AC 106 ms
41,388 KB
testcase_23 AC 107 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    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();
        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