結果

問題 No.1184 Hà Nội
ユーザー kit84kit84
提出日時 2020-08-22 16:42:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-15 10:35:51
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#import collections as col
input=sys.stdin.readline

def linput(ty=int, cvt=list):
	return cvt(map(ty,input().rstrip().split()))

def vinput(rep=1, ty=int, cvt=list):
	return cvt(ty(input().rstrip()) for _ in "*"*rep)

def facto(x, y, mod):
	re = 1
	for i in range(y, x+1):
		re *= i
		re %= mod
	#print(re, file=sys.stderr)
	return re

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    #return facto(n, n-r+1, mod) * g2[r] % mod
    return g1[n] * g2[r] * g2[n-r] % mod

mod = 10**9+7
NN = 10**5+10
g1 = [1, 1] # factorial
g2 = [1, 1] # factorial^(-1)
inverse = [0, 1] # tmp

def init_comb():
    for i in range( 2, NN + 1 ):
        g1.append( ( g1[-1] * i ) % mod )
        inverse.append( ( -inverse[mod % i] * (mod//i) ) % mod )
        g2.append( (g2[-1] * inverse[-1]) % mod )


def main():
	A,B = linput()
	M = mod
	
	res = cmb(B+1, A+1, M)
	print(res)

def solve():
	N,L = linput()
	res = 0
	
	M = -(-N//L)
	mod = 998244353
	res = pow(2, M, mod) - 1
	res %= mod
	
	print(res)
	
	
solve()

#init_comb()
#main()
0