結果

問題 No.492 IOI数列
ユーザー GrenacheGrenache
提出日時 2017-03-11 00:02:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 1,032 bytes
コンパイル時間 3,871 ms
コンパイル使用メモリ 78,268 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-06-24 09:10:22
合計ジャッジ時間 7,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,844 KB
testcase_01 AC 128 ms
54,024 KB
testcase_02 AC 131 ms
54,376 KB
testcase_03 AC 132 ms
54,116 KB
testcase_04 AC 132 ms
54,484 KB
testcase_05 AC 129 ms
53,880 KB
testcase_06 AC 132 ms
54,008 KB
testcase_07 AC 131 ms
53,948 KB
testcase_08 AC 131 ms
54,160 KB
testcase_09 AC 132 ms
54,252 KB
testcase_10 AC 129 ms
54,204 KB
testcase_11 AC 128 ms
54,012 KB
testcase_12 AC 130 ms
54,280 KB
testcase_13 AC 128 ms
54,164 KB
testcase_14 AC 130 ms
54,396 KB
testcase_15 AC 127 ms
54,244 KB
testcase_16 AC 128 ms
53,880 KB
testcase_17 AC 129 ms
54,016 KB
testcase_18 AC 130 ms
53,948 KB
testcase_19 AC 138 ms
54,324 KB
testcase_20 AC 128 ms
53,732 KB
testcase_21 AC 129 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder492 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long n = sc.nextLong();

		long inv99 = pow(99, MOD - 2);

		long an = (pow(100, n) - 1) % MOD * inv99 % MOD;

		pr.println(an);

		n %= 11;

		if (n == 0) {
			pr.println('0');
		} else {
			pr.print('1');
			for (int i = 0; i < n - 1; i++) {
				pr.print("01");
			}
			pr.println();
		}
	}

	private static int MOD = 1_000_000_007;

	private static long pow(int a, long n) {
		long loop = n;
		long ret = 1;
		long x = a;
		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();
	}

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