結果

問題 No.1258 コインゲーム
ユーザー Eki1009Eki1009
提出日時 2020-10-16 22:16:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 645 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 106,864 KB
最終ジャッジ日時 2024-07-20 22:07:48
合計ジャッジ時間 49,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 628 ms
81,840 KB
testcase_01 AC 756 ms
83,444 KB
testcase_02 AC 348 ms
79,048 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 493 ms
80,692 KB
testcase_06 AC 1,775 ms
90,960 KB
testcase_07 AC 284 ms
78,512 KB
testcase_08 AC 254 ms
78,152 KB
testcase_09 AC 984 ms
84,384 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,787 ms
92,580 KB
testcase_13 AC 631 ms
81,636 KB
testcase_14 AC 304 ms
79,676 KB
testcase_15 TLE -
testcase_16 AC 507 ms
80,748 KB
testcase_17 TLE -
testcase_18 AC 959 ms
83,852 KB
testcase_19 AC 881 ms
84,408 KB
testcase_20 AC 1,845 ms
92,896 KB
testcase_21 TLE -
testcase_22 AC 1,621 ms
91,424 KB
testcase_23 AC 1,228 ms
87,088 KB
testcase_24 AC 526 ms
80,856 KB
testcase_25 AC 1,188 ms
86,828 KB
testcase_26 AC 1,014 ms
85,016 KB
testcase_27 TLE -
testcase_28 AC 671 ms
82,008 KB
testcase_29 AC 690 ms
82,148 KB
testcase_30 TLE -
testcase_31 AC 775 ms
83,472 KB
testcase_32 AC 394 ms
80,068 KB
testcase_33 AC 1,885 ms
94,148 KB
testcase_34 TLE -
testcase_35 AC 870 ms
84,560 KB
testcase_36 TLE -
testcase_37 AC 925 ms
84,580 KB
testcase_38 TLE -
testcase_39 AC 663 ms
82,008 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 10**9+7

def matprod(A, B):
    x = len(A)
    y = len(B)
    z = len(B[0])
    C = [[0]*z for _ in range(x)]
    for i in range(x):
        for j in range(y):
            for k in range(z):
                C[i][j] += A[i][k] * B[k][j]
                C[i][j] %= mod
    return C

def matpow(A, n):
    if n == 1:
        return A
    if n%2 == 0:
        B = matpow(A, n/2)
        return matprod(B, B)
    return matprod(A, matpow(A, n-1))

def f():
    n, m, x = map(int, input().split())
    X = [[1, m], [m, 1]]
    Y = matpow(X, n)
    print(Y[0][x])

s = int(input())
for _ in range(s):
    f()
0