結果

問題 No.1704 Many Bus Stops (easy)
ユーザー puznekopuzneko
提出日時 2021-10-30 00:22:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 1,176 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 78,168 KB
最終ジャッジ日時 2024-10-07 13:11:59
合計ジャッジ時間 29,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,756 KB
testcase_01 AC 949 ms
77,680 KB
testcase_02 AC 377 ms
76,708 KB
testcase_03 AC 383 ms
76,752 KB
testcase_04 AC 383 ms
77,736 KB
testcase_05 AC 376 ms
77,308 KB
testcase_06 AC 373 ms
76,900 KB
testcase_07 AC 385 ms
77,576 KB
testcase_08 AC 375 ms
76,872 KB
testcase_09 AC 369 ms
77,616 KB
testcase_10 AC 372 ms
77,144 KB
testcase_11 AC 373 ms
76,828 KB
testcase_12 AC 376 ms
76,816 KB
testcase_13 AC 369 ms
77,704 KB
testcase_14 AC 372 ms
77,408 KB
testcase_15 AC 371 ms
78,104 KB
testcase_16 AC 373 ms
77,504 KB
testcase_17 AC 380 ms
77,224 KB
testcase_18 AC 373 ms
77,000 KB
testcase_19 AC 378 ms
77,364 KB
testcase_20 AC 372 ms
76,992 KB
testcase_21 AC 379 ms
77,368 KB
testcase_22 AC 935 ms
77,976 KB
testcase_23 AC 924 ms
77,148 KB
testcase_24 AC 947 ms
77,464 KB
testcase_25 AC 944 ms
77,568 KB
testcase_26 AC 939 ms
77,708 KB
testcase_27 AC 927 ms
77,324 KB
testcase_28 AC 939 ms
77,964 KB
testcase_29 AC 961 ms
77,672 KB
testcase_30 AC 943 ms
78,168 KB
testcase_31 AC 973 ms
77,340 KB
testcase_32 AC 953 ms
77,496 KB
testcase_33 AC 941 ms
77,420 KB
testcase_34 AC 945 ms
77,924 KB
testcase_35 AC 941 ms
77,352 KB
testcase_36 AC 963 ms
77,316 KB
testcase_37 AC 926 ms
77,252 KB
testcase_38 AC 959 ms
77,664 KB
testcase_39 AC 942 ms
77,252 KB
testcase_40 AC 971 ms
77,608 KB
testcase_41 AC 955 ms
77,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

def matdot(a,b,mod):
    matsize = len(a)
    val = [[0 for i in range(matsize)] for j in range(matsize)]
    for i in range(matsize):
        for j in range(matsize):
            for k in range(matsize):
                val[i][j] = (val[i][j] + a[i][k] * b[k][j]) % mod
    return val

def powmodmat(n,pow,mod):
    matsize = len(n)
    val = [[0 for i in range(matsize)] for j in range(matsize)]
    for i in range(matsize):
        val[i][i] = 1
    while pow > 0:
        if pow & 1:
            val = matdot(val, n, mod)
        pow = pow >> 1
        n = matdot(n, n, mod)
    return val

t, *a = map(int, stdin.read().split())
p = 10**9+7
inv3 = (p+1) // 3
mat = [[inv3,0,0,0,inv3,inv3],[0,inv3,0,inv3,0,inv3],[0,0,inv3,inv3,inv3,0],[1,0,0,0,0,0],[0,1,0,0,0,0],[0,0,1,0,0,0]]

for i in range(t):
    kari = powmodmat(mat,a[i],p)
    print(kari[0][0])
0