結果

問題 No.492 IOI数列
ユーザー kimiyukikimiyuki
提出日時 2017-03-10 23:07:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 17 ms / 1,000 ms
コード長 638 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 10,828 KB
実行使用メモリ 7,960 KB
最終ジャッジ日時 2023-09-06 14:03:50
合計ジャッジ時間 1,581 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,848 KB
testcase_01 AC 17 ms
7,948 KB
testcase_02 AC 16 ms
7,880 KB
testcase_03 AC 17 ms
7,852 KB
testcase_04 AC 16 ms
7,812 KB
testcase_05 AC 17 ms
7,764 KB
testcase_06 AC 16 ms
7,856 KB
testcase_07 AC 16 ms
7,960 KB
testcase_08 AC 17 ms
7,884 KB
testcase_09 AC 17 ms
7,860 KB
testcase_10 AC 16 ms
7,856 KB
testcase_11 AC 16 ms
7,780 KB
testcase_12 AC 16 ms
7,776 KB
testcase_13 AC 16 ms
7,812 KB
testcase_14 AC 16 ms
7,880 KB
testcase_15 AC 17 ms
7,844 KB
testcase_16 AC 16 ms
7,884 KB
testcase_17 AC 16 ms
7,812 KB
testcase_18 AC 16 ms
7,768 KB
testcase_19 AC 16 ms
7,884 KB
testcase_20 AC 16 ms
7,768 KB
testcase_21 AC 16 ms
7,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
def dgemm(f, g):
    h = [ [ 0, 0 ], [ 0, 0 ] ]
    for y in range(2):
        for x in range(2):
            for z in range(2):
                h[y][x] += f[y][z] * g[z][x]
            h[y][x] %= 1000000007
    return h
def dgemv(f, v):
    w = [ 0, 0 ]
    for y in range(2):
        for x in range(2):
            w[y] += f[y][x] * v[x]
        w[y] %= 1000000007
    return w
f = [ [   1, 0 ], [ 0, 1 ] ]
e = [ [ 100, 1 ], [ 0, 1 ] ]
n = int(input())
for i in range(len(bin(n))):
    if n & (1 << i):
        f = dgemm(f, e)
    e = dgemm(e, e)
print(dgemv(f, [ 0, 1 ])[0])
print(('10' * (n % 11))[:-1] or '0')
0