結果

問題 No.793 うし数列 2
ユーザー tentententen
提出日時 2020-09-03 08:58:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 77,032 KB
実行使用メモリ 56,048 KB
最終ジャッジ日時 2024-05-02 07:48:59
合計ジャッジ時間 6,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,152 KB
testcase_01 AC 137 ms
41,488 KB
testcase_02 AC 135 ms
41,144 KB
testcase_03 AC 134 ms
40,952 KB
testcase_04 AC 135 ms
41,356 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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 n = sc.nextLong();
    	long[] allThrees = new long[63];
    	allThrees[0] = 3;
    	for (int i = 1; i < 63; i++) {
    	    allThrees[i] = allThrees[i - 1] * (1 + pow(10, 1L << (i - 1))) % MOD;
    	}
    	long ans = pow(10, n);
    	int add = 0;
    	for (int i = 0; i < 63 && n > 0; i++) {
    	    if (n % 2 == 1) {
    	        ans += allThrees[i] * pow(10, add) % MOD;
    	        ans %= MOD;
    	        add += i + 1;
    	    }
    	    n /= 2;
    	}
    	System.out.println(ans);
	}
	
	static long pow(long x, long p)  {
	    if (p == 0) {
	        return 1;
	    } else if (p % 2 == 0) {
	        return pow(x * x % MOD, p / 2);
	    } else {
	        return pow(x, p - 1) * x % MOD;
	    }
	}
}
0