結果

問題 No.2367 Painting Gascket
ユーザー tassei903tassei903
提出日時 2023-06-30 23:09:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 75,844 KB
最終ジャッジ日時 2024-07-07 11:04:31
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 48 ms
68,352 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 33 ms
52,480 KB
testcase_06 AC 33 ms
52,224 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 AC 512 ms
75,520 KB
testcase_09 AC 364 ms
75,756 KB
testcase_10 AC 61 ms
75,648 KB
testcase_11 AC 457 ms
75,844 KB
testcase_12 AC 59 ms
75,520 KB
testcase_13 AC 176 ms
75,136 KB
testcase_14 AC 120 ms
75,392 KB
testcase_15 AC 118 ms
75,504 KB
testcase_16 AC 214 ms
75,392 KB
testcase_17 AC 469 ms
75,804 KB
testcase_18 AC 380 ms
75,828 KB
testcase_19 AC 258 ms
75,136 KB
testcase_20 AC 470 ms
75,264 KB
testcase_21 AC 288 ms
75,776 KB
testcase_22 AC 480 ms
75,820 KB
testcase_23 AC 381 ms
75,264 KB
testcase_24 AC 181 ms
75,136 KB
testcase_25 AC 189 ms
75,648 KB
testcase_26 AC 79 ms
75,136 KB
testcase_27 AC 396 ms
75,692 KB
testcase_28 AC 338 ms
75,708 KB
testcase_29 AC 35 ms
52,224 KB
testcase_30 AC 37 ms
51,968 KB
testcase_31 AC 37 ms
51,584 KB
testcase_32 AC 34 ms
51,968 KB
testcase_33 AC 43 ms
59,392 KB
testcase_34 AC 42 ms
59,648 KB
testcase_35 AC 403 ms
75,392 KB
testcase_36 AC 504 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
k, n = na()

mod = 10**9+7

n1 = n-1
n2 = max(n-2, 0)
n3 = max(n-3, 0)

g = n
g1 = n-1
g11 = n-1
g12 = max(n-2, 0)
g123 = max(n-3, 0)
g112 = max(n-2, 0)
g111 = n-1

#print(g, g1,g11,g12,g111,g112,g123)
for i in range(k):
    h = n * g1 * g1 * g1
    h1 = g11 * g11 * g1 + g12*g12*g1*n1
    h11 = g111*g11*g11+g112*g12*g12*n1
    h111 = g111**3 + n1 * g112**3
    h12 = 2 * g11*g112*g12 + n2 * g123*g12**2
    h112 = g111*g112*g112 + g112**3 + g112*g123*g123*n2
    h123 = 3 * g112 * g112 * g123 + n3 * g123**3
    g = h % mod
    g1 = h1%mod
    g11 = h11 % mod
    g12 = h12 % mod
    g111 = h111 % mod
    g123 = h123 % mod
    g112 = h112 % mod
    #print(g, g1,g11,g12,g111,g112,g123)

print(g)
0