結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー GrenacheGrenache
提出日時 2017-02-24 22:28:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 3,462 ms
コンパイル使用メモリ 75,028 KB
実行使用メモリ 41,808 KB
最終ジャッジ日時 2024-06-10 22:44:59
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,196 KB
testcase_01 AC 120 ms
40,004 KB
testcase_02 AC 116 ms
41,776 KB
testcase_03 AC 120 ms
41,372 KB
testcase_04 AC 121 ms
41,260 KB
testcase_05 AC 104 ms
41,028 KB
testcase_06 AC 114 ms
41,448 KB
testcase_07 AC 106 ms
41,140 KB
testcase_08 AC 119 ms
41,176 KB
testcase_09 AC 110 ms
41,776 KB
testcase_10 AC 104 ms
41,212 KB
testcase_11 AC 105 ms
41,412 KB
testcase_12 AC 117 ms
41,144 KB
testcase_13 AC 118 ms
41,808 KB
testcase_14 AC 118 ms
41,280 KB
testcase_15 AC 118 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder487 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int m = sc.nextInt();

		long ret = 1;
		for (int i = 0; i < 2017; i++) {
			ret = ret * 2017 * 2017 % m;
		}

		ret += 2017;
		ret %= m;

		pr.println(ret);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0