結果

問題 No.793 うし数列 2
ユーザー htensaihtensai
提出日時 2020-06-10 15:16:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-06-23 05:59:25
合計ジャッジ時間 6,716 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,760 KB
testcase_01 AC 132 ms
40,948 KB
testcase_02 AC 132 ms
41,432 KB
testcase_03 AC 132 ms
40,896 KB
testcase_04 AC 131 ms
41,036 KB
testcase_05 AC 136 ms
41,000 KB
testcase_06 AC 130 ms
40,960 KB
testcase_07 AC 133 ms
40,968 KB
testcase_08 AC 114 ms
39,976 KB
testcase_09 AC 130 ms
40,524 KB
testcase_10 AC 129 ms
41,024 KB
testcase_11 AC 129 ms
40,952 KB
testcase_12 AC 130 ms
40,996 KB
testcase_13 AC 130 ms
41,080 KB
testcase_14 AC 131 ms
41,252 KB
testcase_15 AC 148 ms
40,756 KB
testcase_16 AC 145 ms
41,256 KB
testcase_17 AC 142 ms
40,876 KB
testcase_18 AC 152 ms
40,988 KB
testcase_19 AC 131 ms
41,384 KB
testcase_20 AC 131 ms
41,004 KB
testcase_21 AC 131 ms
40,640 KB
testcase_22 AC 133 ms
40,940 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 ans = getThree(n) + pow(10, n);
		ans %= MOD;
		System.out.println(ans);
	}
	
	static long getThree(long x) {
	    if (x == 1) {
	        return 3;
	    } else if (x % 2 == 0) {
	        return getThree(x / 2) * (pow(10, x / 2) + 1) % MOD;
	    } else {
	        return (getThree(x - 1) + pow(10, x - 1) * 3) % MOD;
	    }
	}
	
	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