結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー neko_the_shadowneko_the_shadow
提出日時 2017-03-20 23:19:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-07-05 04:35:26
合計ジャッジ時間 4,740 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,044 KB
testcase_01 AC 126 ms
54,008 KB
testcase_02 AC 123 ms
53,928 KB
testcase_03 AC 127 ms
54,116 KB
testcase_04 AC 127 ms
54,036 KB
testcase_05 AC 128 ms
54,012 KB
testcase_06 AC 123 ms
53,928 KB
testcase_07 AC 119 ms
53,808 KB
testcase_08 AC 128 ms
54,184 KB
testcase_09 AC 124 ms
53,988 KB
testcase_10 AC 125 ms
53,900 KB
testcase_11 AC 128 ms
53,824 KB
testcase_12 AC 125 ms
53,964 KB
testcase_13 AC 127 ms
54,004 KB
testcase_14 AC 123 ms
53,956 KB
testcase_15 AC 123 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
    public static long power(long x, long y, long z) {
        if (y == 0) return 1;
        return y % 2 == 0 ? power((x * x) % z, y / 2, z) : (power(x, y - 1, z) * x) % z;
    }
    
    
    
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        long m = Long.parseLong(stdin.nextLine());
        
        long answer = (2017 + power(2017 * 2017, 2017, m)) % m;
        System.out.println(answer);
    }
}
0