結果

問題 No.793 うし数列 2
ユーザー GrenacheGrenache
提出日時 2019-04-27 23:55:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 3,566 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-11-30 02:42:38
合計ジャッジ時間 7,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,092 KB
testcase_01 AC 118 ms
41,380 KB
testcase_02 AC 117 ms
41,560 KB
testcase_03 AC 131 ms
41,548 KB
testcase_04 AC 127 ms
41,312 KB
testcase_05 AC 116 ms
41,600 KB
testcase_06 AC 121 ms
40,012 KB
testcase_07 AC 117 ms
40,316 KB
testcase_08 AC 117 ms
41,508 KB
testcase_09 AC 130 ms
41,332 KB
testcase_10 AC 117 ms
41,396 KB
testcase_11 AC 130 ms
41,596 KB
testcase_12 AC 122 ms
41,416 KB
testcase_13 AC 137 ms
41,292 KB
testcase_14 AC 128 ms
41,456 KB
testcase_15 AC 115 ms
40,388 KB
testcase_16 AC 120 ms
40,268 KB
testcase_17 AC 130 ms
41,116 KB
testcase_18 AC 127 ms
41,232 KB
testcase_19 AC 129 ms
41,444 KB
testcase_20 AC 131 ms
41,336 KB
testcase_21 AC 115 ms
40,284 KB
testcase_22 AC 130 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder793_1 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final int MOD = 1_000_000_007;

		long n = sc.nextLong();

		long ans = (4 * modPow(10, n, MOD) - 1) % MOD * modPow(3, MOD - 2, MOD) % MOD;
		
		pr.println(ans);
	}

	static long modPow(long a, long n, int MOD) {
		long loop = n;
		long ret = 1;
		long x = a % MOD;
		while (loop > 0) {
			if (loop % 2 == 1) {
				ret = ret * x % MOD;
			}
			x = x * x % MOD;
			loop /= 2;
		}

		return ret;
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0