結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー uafr_csuafr_cs
提出日時 2017-02-24 22:27:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 75,772 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-06-10 22:43:20
合計ジャッジ時間 5,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,480 KB
testcase_01 AC 136 ms
41,172 KB
testcase_02 AC 134 ms
41,096 KB
testcase_03 AC 139 ms
41,408 KB
testcase_04 AC 132 ms
41,320 KB
testcase_05 AC 124 ms
39,876 KB
testcase_06 AC 134 ms
41,304 KB
testcase_07 AC 132 ms
41,316 KB
testcase_08 AC 129 ms
41,436 KB
testcase_09 AC 137 ms
41,136 KB
testcase_10 AC 137 ms
41,372 KB
testcase_11 AC 136 ms
41,116 KB
testcase_12 AC 138 ms
41,272 KB
testcase_13 AC 137 ms
41,440 KB
testcase_14 AC 139 ms
41,200 KB
testcase_15 AC 137 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static long mod_pow(long a, long x, long mod){
		if(x == 0){ return 1; }
		if(x == 1){ return a % mod; }
		if(x % 2 != 0){
			return (a * mod_pow(a, x - 1, mod)) % mod;
		}else{
			long ret = mod_pow(a, x / 2, mod);
			return (ret * ret) % mod;
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long M = sc.nextLong();
		
		System.out.println((2017 + mod_pow(2017 * 2017, 2017, M)) % M);
	}
}
0