結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-24 02:56:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-10-11 00:51:12
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,044 KB
testcase_01 AC 129 ms
41,300 KB
testcase_02 AC 132 ms
41,252 KB
testcase_03 AC 132 ms
41,160 KB
testcase_04 AC 131 ms
41,376 KB
testcase_05 AC 133 ms
41,244 KB
testcase_06 AC 130 ms
41,076 KB
testcase_07 AC 131 ms
41,228 KB
testcase_08 AC 131 ms
40,984 KB
testcase_09 AC 130 ms
41,220 KB
testcase_10 AC 132 ms
41,196 KB
testcase_11 AC 131 ms
41,344 KB
testcase_12 AC 117 ms
40,272 KB
testcase_13 AC 134 ms
41,376 KB
testcase_14 AC 132 ms
41,112 KB
testcase_15 AC 132 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

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