結果

問題 No.793 うし数列 2
ユーザー tentententen
提出日時 2024-02-05 17:46:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 1,760 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 78,392 KB
実行使用メモリ 37,096 KB
最終ジャッジ日時 2024-09-28 11:40:10
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,980 KB
testcase_01 AC 54 ms
36,668 KB
testcase_02 AC 55 ms
36,980 KB
testcase_03 AC 53 ms
37,020 KB
testcase_04 AC 53 ms
37,096 KB
testcase_05 AC 53 ms
36,680 KB
testcase_06 AC 54 ms
37,024 KB
testcase_07 AC 51 ms
36,800 KB
testcase_08 AC 53 ms
36,888 KB
testcase_09 AC 53 ms
36,776 KB
testcase_10 AC 52 ms
36,672 KB
testcase_11 AC 52 ms
36,888 KB
testcase_12 AC 52 ms
37,032 KB
testcase_13 AC 53 ms
37,040 KB
testcase_14 AC 55 ms
36,520 KB
testcase_15 AC 54 ms
36,796 KB
testcase_16 AC 53 ms
36,864 KB
testcase_17 AC 53 ms
36,984 KB
testcase_18 AC 54 ms
36,612 KB
testcase_19 AC 55 ms
36,864 KB
testcase_20 AC 54 ms
36,488 KB
testcase_21 AC 56 ms
36,712 KB
testcase_22 AC 53 ms
37,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextLong();
        System.out.println((pow(10, n) + length(3, n)) % 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;
        }
    }
    
    static long length(int x, long p) {
        if (p == 1) {
            return x;
        } else if (p % 2 == 0) {
            long tmp = length(x, p / 2);
            return (tmp * pow(10, p / 2) % MOD + tmp) % MOD;
        } else {
            return (length(x, p - 1) * 10 + x) % MOD;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0