結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー Mcpu3Mcpu3
提出日時 2018-09-01 16:57:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-09-19 07:24:35
合計ジャッジ時間 4,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,192 KB
testcase_01 AC 119 ms
54,132 KB
testcase_02 AC 117 ms
53,952 KB
testcase_03 AC 106 ms
52,960 KB
testcase_04 AC 106 ms
53,052 KB
testcase_05 AC 104 ms
52,740 KB
testcase_06 AC 104 ms
52,888 KB
testcase_07 AC 119 ms
54,128 KB
testcase_08 AC 117 ms
54,092 KB
testcase_09 AC 107 ms
53,028 KB
testcase_10 AC 117 ms
54,164 KB
testcase_11 AC 109 ms
52,980 KB
testcase_12 AC 112 ms
53,984 KB
testcase_13 AC 104 ms
52,768 KB
testcase_14 AC 103 ms
52,724 KB
testcase_15 AC 109 ms
53,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static long p(long x,long n,long m) {
		long r;
		if(1>n) return 1;
		r=p(x*x%m,n/2,m);
		if(n%2>0) r=r*x%m;
		return r;
	}
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		long m=sc.nextLong();
		sc.close();
		System.out.print((2017+p(2017,2017,m)*p(2017,2017,m)%m)%m);
	}
}
0