結果

問題 No.986 Present
ユーザー chielochielo
提出日時 2020-02-12 12:03:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 76,320 KB
最終ジャッジ日時 2024-10-03 06:08:14
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
55,372 KB
testcase_01 AC 38 ms
56,088 KB
testcase_02 AC 43 ms
56,508 KB
testcase_03 AC 226 ms
75,780 KB
testcase_04 AC 53 ms
64,592 KB
testcase_05 AC 188 ms
76,164 KB
testcase_06 AC 124 ms
72,384 KB
testcase_07 AC 50 ms
63,312 KB
testcase_08 AC 101 ms
71,408 KB
testcase_09 AC 239 ms
75,892 KB
testcase_10 AC 38 ms
56,036 KB
testcase_11 AC 172 ms
75,896 KB
testcase_12 AC 163 ms
76,176 KB
testcase_13 AC 51 ms
64,172 KB
testcase_14 AC 73 ms
65,404 KB
testcase_15 AC 358 ms
75,832 KB
testcase_16 AC 63 ms
65,124 KB
testcase_17 AC 270 ms
75,916 KB
testcase_18 AC 179 ms
75,704 KB
testcase_19 AC 106 ms
70,328 KB
testcase_20 AC 47 ms
64,524 KB
testcase_21 AC 371 ms
75,880 KB
testcase_22 AC 286 ms
76,196 KB
testcase_23 AC 152 ms
76,320 KB
testcase_24 AC 390 ms
76,204 KB
testcase_25 AC 99 ms
70,720 KB
testcase_26 AC 394 ms
76,024 KB
testcase_27 AC 270 ms
75,692 KB
testcase_28 AC 42 ms
55,324 KB
testcase_29 AC 42 ms
55,476 KB
testcase_30 AC 45 ms
54,908 KB
testcase_31 AC 41 ms
54,940 KB
testcase_32 AC 43 ms
55,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
n, m = map(int, input().split())
mo = 998244353
f = lambda m, n: reduce(lambda x, y: x * y % mo, ((pow(2, m, mo) - pow(2, i, mo)) for i in range(n)))
fact = lambda n: reduce(lambda x, y: x * y % mo, range(1, n + 1))
rev = lambda x: pow(x, mo - 2, mo)
print(pow(2, n, mo), f(m, n) * rev(fact(n)) % mo, f(m, n) * rev(f(n, n)) % mo)
0