結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー htensaihtensai
提出日時 2019-11-17 22:36:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-09-25 06:11:17
合計ジャッジ時間 4,880 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,864 KB
testcase_01 AC 114 ms
53,912 KB
testcase_02 AC 114 ms
54,080 KB
testcase_03 AC 106 ms
52,964 KB
testcase_04 AC 105 ms
52,780 KB
testcase_05 AC 115 ms
54,084 KB
testcase_06 AC 109 ms
53,764 KB
testcase_07 AC 112 ms
54,144 KB
testcase_08 AC 102 ms
52,892 KB
testcase_09 AC 102 ms
54,216 KB
testcase_10 AC 114 ms
54,212 KB
testcase_11 AC 116 ms
54,196 KB
testcase_12 AC 118 ms
53,924 KB
testcase_13 AC 105 ms
53,008 KB
testcase_14 AC 106 ms
52,780 KB
testcase_15 AC 104 ms
52,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int m = sc.nextInt();
		int x = 2017 * 2017 % m;
		int ans = 1;
		for (int i = 0; i < 2017; i++) {
		    ans *= x;
		    ans %= m;
		}
		ans += 2017;
		ans %= m;
	    System.out.println(ans);
	}
}
0