結果

問題 No.492 IOI数列
ユーザー 37zigen37zigen
提出日時 2017-03-11 00:43:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 1,443 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 79,560 KB
実行使用メモリ 54,620 KB
最終ジャッジ日時 2024-06-24 09:20:09
合計ジャッジ時間 6,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,488 KB
testcase_01 AC 134 ms
41,536 KB
testcase_02 AC 118 ms
40,292 KB
testcase_03 AC 137 ms
41,196 KB
testcase_04 AC 119 ms
40,368 KB
testcase_05 AC 135 ms
41,428 KB
testcase_06 AC 132 ms
41,356 KB
testcase_07 AC 121 ms
40,472 KB
testcase_08 AC 133 ms
41,100 KB
testcase_09 AC 135 ms
41,148 KB
testcase_10 AC 134 ms
41,320 KB
testcase_11 AC 137 ms
54,092 KB
testcase_12 AC 137 ms
54,080 KB
testcase_13 AC 135 ms
54,524 KB
testcase_14 AC 137 ms
54,136 KB
testcase_15 AC 137 ms
54,128 KB
testcase_16 AC 138 ms
54,620 KB
testcase_17 AC 134 ms
54,012 KB
testcase_18 AC 134 ms
53,888 KB
testcase_19 AC 135 ms
54,304 KB
testcase_20 AC 136 ms
54,160 KB
testcase_21 AC 135 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
import java.util.concurrent.SynchronousQueue;
import java.math.*;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	static long[][] mx = { { 100, 1 }, { 1, 0 } };
	static long MODULO = 1000000007;
	BigInteger MODULO2 = new BigInteger("101010101010101010101");
	static BigInteger[] arr = new BigInteger[100];

	void run() {
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		System.out.println((pow(100, N) - 1 + MODULO) * (pow(99, MODULO - 2) % MODULO) % MODULO);
		BigInteger a = new BigInteger("0");
		arr[0] = a;
		for (int i = 1; i < arr.length; ++i) {
			arr[i] = arr[i - 1].multiply(BigInteger.valueOf(100)).add(BigInteger.ONE).mod(MODULO2);
		}
		System.out.println(arr[(int) (N % 11)]);
	}

	long pow(long a, long n) {
		long ret = 1;
		for (; n > 0; n >>= 1, a = (a * a) % MODULO) {
			if (n % 2 == 1) {
				ret *= a;
				ret %= MODULO;
			}
		}
		return ret;
	}

	long[][] mul(long[][] a, long[][] b) {
		if (a[0].length != b.length)
			throw new AssertionError();
		long[][] ret = new long[a.length][b[0].length];
		for (int i = 0; i < a.length; ++i) {
			for (int j = 0; j < b[0].length; ++j) {
				for (int k = 0; k < a[j].length; ++k) {
					ret[i][j] = (ret[i][j] + a[i][k] * b[k][j]) % MODULO;
				}
			}
		}
		return ret;
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0