結果

問題 No.793 うし数列 2
ユーザー tentententen
提出日時 2020-09-03 09:04:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 2,147 ms
コンパイル使用メモリ 77,964 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-11-22 20:09:25
合計ジャッジ時間 6,183 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,156 KB
testcase_01 AC 126 ms
41,024 KB
testcase_02 AC 129 ms
41,028 KB
testcase_03 AC 115 ms
41,152 KB
testcase_04 AC 123 ms
41,216 KB
testcase_05 AC 118 ms
40,240 KB
testcase_06 AC 128 ms
41,428 KB
testcase_07 AC 123 ms
41,292 KB
testcase_08 AC 118 ms
41,556 KB
testcase_09 AC 129 ms
41,148 KB
testcase_10 AC 124 ms
41,500 KB
testcase_11 AC 126 ms
41,260 KB
testcase_12 AC 123 ms
41,072 KB
testcase_13 AC 126 ms
41,336 KB
testcase_14 AC 126 ms
41,344 KB
testcase_15 AC 128 ms
41,140 KB
testcase_16 AC 130 ms
41,176 KB
testcase_17 AC 120 ms
39,756 KB
testcase_18 AC 132 ms
41,304 KB
testcase_19 AC 115 ms
41,000 KB
testcase_20 AC 119 ms
40,004 KB
testcase_21 AC 129 ms
41,296 KB
testcase_22 AC 124 ms
40,992 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 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 = 0;
    	int add = 0;
    	long x = n;
    	for (int i = 0; i < 63 && x > 0; i++) {
    	    if (x % 2 == 1) {
    	        ans *= pow(10, 1L << i);
    	        ans %= MOD;
    	        ans += allThrees[i];
    	        ans %= MOD;
    	        add += i + 1;
    	    }
    	    x /= 2;
    	}
    	ans += pow(10, n);
    	ans %= MOD;
    	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