結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー shinwisteriashinwisteria
提出日時 2017-03-20 17:20:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 3,486 ms
コンパイル使用メモリ 75,076 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-07-05 03:23:15
合計ジャッジ時間 6,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,208 KB
testcase_01 AC 131 ms
54,000 KB
testcase_02 AC 132 ms
54,096 KB
testcase_03 AC 132 ms
53,724 KB
testcase_04 AC 128 ms
53,988 KB
testcase_05 AC 127 ms
53,664 KB
testcase_06 AC 131 ms
53,904 KB
testcase_07 AC 129 ms
53,844 KB
testcase_08 AC 123 ms
53,964 KB
testcase_09 AC 129 ms
54,064 KB
testcase_10 AC 129 ms
53,740 KB
testcase_11 AC 131 ms
53,984 KB
testcase_12 AC 132 ms
53,916 KB
testcase_13 AC 129 ms
53,996 KB
testcase_14 AC 130 ms
54,036 KB
testcase_15 AC 130 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Calc2017 {
	static int M;

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		M = s.nextInt();
		s.close();
		
		int a = 2017%M;
		int b;
		
		b = Rest(a,4034);
		
		a = (a + b)%M;
		System.out.println(a);

	}
	
	static int Rest(int a,int K){
		int Q,r,Ans = 0,b;
		for(int i = 1;i <= K;i++){
			if(Math.pow(a,i) >=M){
				Q = K/i;
				r = K%i;
				b = (int)Math.pow(a, i)%M;
				Ans = (Rest(b,Q) * Rest(a,r)) % M;
				return Ans;
			}
		}
		return (int)Math.pow(a, K);
	}

}
0