結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー tentententen
提出日時 2020-09-28 21:49:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 2,860 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-07-02 16:45:45
合計ジャッジ時間 4,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,864 KB
testcase_01 AC 129 ms
41,284 KB
testcase_02 AC 130 ms
41,132 KB
testcase_03 AC 113 ms
40,012 KB
testcase_04 AC 129 ms
41,180 KB
testcase_05 AC 128 ms
41,032 KB
testcase_06 AC 128 ms
41,144 KB
testcase_07 AC 127 ms
41,168 KB
testcase_08 AC 130 ms
40,912 KB
testcase_09 AC 128 ms
41,176 KB
testcase_10 AC 115 ms
39,892 KB
testcase_11 AC 116 ms
39,992 KB
testcase_12 AC 130 ms
41,176 KB
testcase_13 AC 129 ms
41,076 KB
testcase_14 AC 129 ms
41,140 KB
testcase_15 AC 129 ms
41,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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