結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-02-25 02:11:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-06-11 03:47:51
合計ジャッジ時間 4,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,836 KB
testcase_01 AC 117 ms
53,976 KB
testcase_02 AC 115 ms
54,136 KB
testcase_03 AC 118 ms
53,988 KB
testcase_04 AC 121 ms
54,052 KB
testcase_05 AC 124 ms
54,100 KB
testcase_06 AC 118 ms
54,044 KB
testcase_07 AC 105 ms
54,180 KB
testcase_08 AC 118 ms
53,764 KB
testcase_09 AC 117 ms
54,016 KB
testcase_10 AC 120 ms
53,856 KB
testcase_11 AC 110 ms
52,788 KB
testcase_12 AC 111 ms
53,096 KB
testcase_13 AC 120 ms
53,940 KB
testcase_14 AC 118 ms
53,972 KB
testcase_15 AC 121 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int M = sc.nextInt();
        long A = 2017;
        long B = powmod(A*A,A,M);
        long ans = (A%M+B)%M;
        System.out.println(ans);
    }
    static long powmod(long A, long k, long M){
        if(k==0)return 1;
        if(k%2==0){
            return powmod(A*A%M,k/2,M)%M;
        }else{
            return A*powmod(A,k-1,M)%M;
        }
    }
}
0