結果

問題 No.673 カブトムシ
ユーザー htensaihtensai
提出日時 2019-11-12 09:28:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 78,840 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-07-02 18:06:26
合計ジャッジ時間 5,443 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,116 KB
testcase_01 AC 128 ms
41,320 KB
testcase_02 AC 128 ms
40,912 KB
testcase_03 AC 130 ms
41,232 KB
testcase_04 AC 117 ms
40,188 KB
testcase_05 AC 132 ms
41,144 KB
testcase_06 AC 133 ms
41,180 KB
testcase_07 AC 122 ms
39,728 KB
testcase_08 AC 131 ms
40,972 KB
testcase_09 AC 133 ms
40,968 KB
testcase_10 AC 130 ms
40,872 KB
testcase_11 AC 132 ms
41,256 KB
testcase_12 AC 129 ms
41,088 KB
testcase_13 AC 131 ms
41,060 KB
testcase_14 AC 134 ms
40,936 KB
testcase_15 AC 131 ms
40,776 KB
testcase_16 AC 129 ms
41,120 KB
testcase_17 AC 134 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long b = sc.nextLong() % MOD;
		long c = sc.nextLong() % MOD;
		long d = sc.nextLong();
		System.out.println(sum(b * c % MOD, c, d));
   }
   
   static long pow(long x, long y) {
       long ret = 1;
       x %= MOD;
       while (y > 0) {
           if (y % 2 == 1) {
               ret *= x;
               ret %= MOD;
           }
           x *= x;
           x %= MOD;
           y /= 2;
       }
       return ret;
   }
   
   static long sum(long a, long r, long n) {
       if (n == 1) {
           return a % MOD;
       }
       long x = sum(a, r, n / 2);
       long ret = (x + pow(r, n / 2) * x) % MOD;
       if (n % 2 == 1) {
           ret *= r;
           ret += a;
           ret %= MOD;
       }
       return ret;
   }
}
0