結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー 37zigen37zigen
提出日時 2017-02-24 22:44:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 4,227 ms
コンパイル使用メモリ 76,424 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-06-10 22:52:36
合計ジャッジ時間 6,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,324 KB
testcase_01 AC 99 ms
40,232 KB
testcase_02 AC 107 ms
41,396 KB
testcase_03 AC 98 ms
39,976 KB
testcase_04 AC 97 ms
40,280 KB
testcase_05 AC 107 ms
41,040 KB
testcase_06 AC 98 ms
40,044 KB
testcase_07 AC 107 ms
41,012 KB
testcase_08 AC 109 ms
41,032 KB
testcase_09 AC 111 ms
41,300 KB
testcase_10 AC 107 ms
41,444 KB
testcase_11 AC 108 ms
41,260 KB
testcase_12 AC 100 ms
40,060 KB
testcase_13 AC 115 ms
41,316 KB
testcase_14 AC 98 ms
40,020 KB
testcase_15 AC 98 ms
40,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Q485 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long M = sc.nextLong();
		long ans = 1;
		for (int i = 0; i < 2017; ++i) {
			ans = ans * 2017 * 2017 % M;
		}
		ans += 2017;
		ans %= M;
		System.out.println(ans);
	}

}
0