結果

問題 No.492 IOI数列
ユーザー mbanmban
提出日時 2017-04-13 21:01:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 1,113 bytes
コンパイル時間 3,483 ms
コンパイル使用メモリ 77,660 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-07-18 12:59:34
合計ジャッジ時間 7,022 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,144 KB
testcase_01 AC 129 ms
41,404 KB
testcase_02 AC 130 ms
41,128 KB
testcase_03 AC 132 ms
41,240 KB
testcase_04 AC 128 ms
41,148 KB
testcase_05 AC 130 ms
41,584 KB
testcase_06 AC 127 ms
41,196 KB
testcase_07 AC 128 ms
41,208 KB
testcase_08 AC 131 ms
41,400 KB
testcase_09 AC 131 ms
41,160 KB
testcase_10 AC 129 ms
41,124 KB
testcase_11 AC 133 ms
41,268 KB
testcase_12 AC 130 ms
41,068 KB
testcase_13 AC 132 ms
41,284 KB
testcase_14 AC 133 ms
41,252 KB
testcase_15 AC 130 ms
41,424 KB
testcase_16 AC 136 ms
41,120 KB
testcase_17 AC 133 ms
41,216 KB
testcase_18 AC 131 ms
41,368 KB
testcase_19 AC 129 ms
41,296 KB
testcase_20 AC 126 ms
41,156 KB
testcase_21 AC 130 ms
41,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Program {
	public static void main(String[] args) {
		new Magatro().solve();
	}
}

class Magatro {
	private long n;
	private int MOD = 1000000007;
	private long[] anser = new long[] { 0l, 1l, 101l, 10101l, 1010101l, 101010101l, 10101010101l, 1010101010101l,
			101010101010101l, 10101010101010101l, 1010101010101010101l };

	private void scan() {
		Scanner scanner = new Scanner(System.in);
		n = scanner.nextLong();
	}

	public void solve() {
		scan();
		System.out.println(function(n, MOD));
		System.out.println(anser[(int) (n % 11)]);
	}

	private long function(long i, long mod) {
		if (i == 0) {
			return 0;
		}
		if (i == 1) {
			return 1;
		}
		if (i % 2 == 1) {
			long res = function(i - 1, mod) * 100 + 1;
			res %= mod;
			return res;
		} else {
			long res = function(i / 2, mod);
			res *= pow(100, i / 2, mod) + 1;
			res %= mod;
			return res;
		}
	}

	private long pow(long a, long b, long mod) {
		long result = 1;
		while (b > 0) {
			if (b % 2 == 1) {
				result *= a;
				result %= mod;
			}
			a *= a;
			a %= mod;
			b/=2;
		}
		return result;
	}
}
0