結果

問題 No.613 Solitude by the window
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-02-27 02:50:58
言語 Java
(openjdk 23)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 1,973 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-11-25 11:33:50
合計ジャッジ時間 5,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,120 KB
testcase_01 AC 115 ms
54,164 KB
testcase_02 AC 122 ms
54,152 KB
testcase_03 AC 120 ms
53,852 KB
testcase_04 AC 117 ms
54,292 KB
testcase_05 AC 110 ms
53,812 KB
testcase_06 AC 114 ms
53,924 KB
testcase_07 AC 108 ms
53,924 KB
testcase_08 AC 111 ms
53,956 KB
testcase_09 AC 113 ms
53,752 KB
testcase_10 AC 113 ms
53,972 KB
testcase_11 AC 98 ms
52,140 KB
testcase_12 AC 105 ms
54,372 KB
testcase_13 AC 121 ms
53,964 KB
testcase_14 AC 119 ms
53,940 KB
testcase_15 AC 115 ms
53,788 KB
testcase_16 AC 111 ms
54,020 KB
testcase_17 AC 112 ms
53,908 KB
testcase_18 AC 110 ms
53,828 KB
testcase_19 AC 122 ms
53,844 KB
testcase_20 AC 119 ms
53,768 KB
testcase_21 AC 118 ms
54,104 KB
testcase_22 AC 115 ms
53,916 KB
testcase_23 AC 101 ms
52,904 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