結果

問題 No.1100 Boxes
ユーザー tikitaka1201tikitaka1201
提出日時 2020-06-28 17:07:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 524 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 91,056 KB
最終ジャッジ日時 2024-07-07 21:14:57
合計ジャッジ時間 11,215 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,216 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 36 ms
52,424 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 35 ms
51,968 KB
testcase_13 AC 37 ms
51,584 KB
testcase_14 AC 36 ms
51,712 KB
testcase_15 AC 38 ms
52,072 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 41 ms
53,888 KB
testcase_18 AC 39 ms
52,992 KB
testcase_19 AC 65 ms
69,248 KB
testcase_20 AC 116 ms
75,904 KB
testcase_21 AC 645 ms
78,464 KB
testcase_22 TLE -
testcase_23 AC 633 ms
78,272 KB
testcase_24 AC 956 ms
79,532 KB
testcase_25 AC 1,284 ms
79,872 KB
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
mod=998244353

framod=[1]
def framod_calc(n, mod, a=1):
    for i in range(1,n+1):
        a=a * i % mod
        framod.append(a)
framod_calc(k+1, mod)
def combmod(n, k, mod):
    a=framod[n]
    b=framod[k]
    c=framod[n-k]
    return (a * pow(b, mod-2, mod) * pow(c, mod-2, mod)) % mod

ans=0

for i in range(1,k+1):
    tmp=combmod(k,i,mod)*pow(k-i,n,mod)
    if i%2==1:
        ans+=tmp*(2**(i-1))
        ans%=mod
    else:
        ans-=tmp*(2**(i-1))
        ans=(ans+mod)%mod

print(ans)
0