結果

問題 No.1186 長方形の敷き詰め
ユーザー tyawanmusityawanmusi
提出日時 2020-08-22 17:21:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 157,920 KB
最終ジャッジ日時 2024-10-15 11:14:45
合計ジャッジ時間 6,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 148 ms
157,824 KB
testcase_03 AC 38 ms
51,456 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 38 ms
51,456 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 WA -
testcase_09 TLE -
testcase_10 WA -
testcase_11 AC 44 ms
58,880 KB
testcase_12 AC 44 ms
59,648 KB
testcase_13 AC 44 ms
58,496 KB
testcase_14 AC 45 ms
59,904 KB
testcase_15 AC 44 ms
58,752 KB
testcase_16 AC 43 ms
58,624 KB
testcase_17 AC 87 ms
122,496 KB
testcase_18 AC 115 ms
131,968 KB
testcase_19 AC 121 ms
144,896 KB
testcase_20 AC 131 ms
157,568 KB
testcase_21 AC 113 ms
122,240 KB
testcase_22 AC 1,181 ms
157,704 KB
testcase_23 AC 115 ms
122,112 KB
testcase_24 AC 135 ms
157,708 KB
testcase_25 AC 108 ms
122,344 KB
testcase_26 AC 111 ms
122,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
ans=0
mod=998244353
f = [1]
for i in range(m*2):
  f += [f[-1]*(i+1) % mod]
def comb(a, b):
  return f[a]*pow(f[b], mod-2, mod)*pow(f[a-b], mod-2, mod) % mod
for i in range(m+1):
  if (m-i)%n:continue
  ans+=comb((m-i)//n+i,i)
  ans%=mod
print(ans)
0