結果

問題 No.1531 く2
ユーザー googol_S0googol_S0
提出日時 2021-06-04 20:30:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-11-19 09:18:00
合計ジャッジ時間 6,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,808 KB
testcase_01 AC 69 ms
71,552 KB
testcase_02 AC 72 ms
71,552 KB
testcase_03 AC 91 ms
79,620 KB
testcase_04 AC 74 ms
73,728 KB
testcase_05 AC 73 ms
73,472 KB
testcase_06 AC 70 ms
71,552 KB
testcase_07 AC 71 ms
71,808 KB
testcase_08 AC 65 ms
69,120 KB
testcase_09 AC 68 ms
70,656 KB
testcase_10 AC 75 ms
73,088 KB
testcase_11 AC 78 ms
75,036 KB
testcase_12 AC 75 ms
73,344 KB
testcase_13 AC 93 ms
79,764 KB
testcase_14 AC 90 ms
79,580 KB
testcase_15 AC 90 ms
79,796 KB
testcase_16 AC 90 ms
79,616 KB
testcase_17 AC 91 ms
79,572 KB
testcase_18 AC 92 ms
79,732 KB
testcase_19 AC 90 ms
79,744 KB
testcase_20 AC 93 ms
80,072 KB
testcase_21 AC 91 ms
80,080 KB
testcase_22 AC 93 ms
79,684 KB
testcase_23 AC 91 ms
79,744 KB
testcase_24 AC 92 ms
79,744 KB
testcase_25 AC 92 ms
79,528 KB
testcase_26 AC 93 ms
80,128 KB
testcase_27 AC 91 ms
79,732 KB
testcase_28 AC 90 ms
80,116 KB
testcase_29 AC 92 ms
79,612 KB
testcase_30 AC 93 ms
79,840 KB
testcase_31 AC 92 ms
79,744 KB
testcase_32 AC 92 ms
79,872 KB
testcase_33 AC 92 ms
79,536 KB
testcase_34 AC 90 ms
79,872 KB
testcase_35 AC 91 ms
79,744 KB
testcase_36 AC 90 ms
79,780 KB
testcase_37 AC 92 ms
79,780 KB
testcase_38 AC 92 ms
80,000 KB
testcase_39 AC 94 ms
79,764 KB
testcase_40 AC 93 ms
79,684 KB
testcase_41 AC 93 ms
79,800 KB
testcase_42 AC 73 ms
72,960 KB
testcase_43 AC 73 ms
72,832 KB
testcase_44 AC 86 ms
79,972 KB
testcase_45 AC 74 ms
72,704 KB
testcase_46 AC 78 ms
74,076 KB
testcase_47 AC 87 ms
79,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
M=70
DP=[[[0]*(M+1) for i in range(M+1)] for j in range(M+1)]
DP[0][0][0]=1
mod=998244353
for i in range(1,M+1):
  for j in range(M):
    for k in range(j,M):
      if (K>>(M-i))&1:
        if (N>>(M-i))&1:
          DP[i][0][k-j+1]=(DP[i][0][k-j+1]+DP[i-1][j][k])%mod
        DP[i][j+1][k+1]=(DP[i][j+1][k+1]+DP[i-1][j][k])%mod
      else:
        if (N>>(M-i))&1:
          DP[i][j+1][k+1]=(DP[i][j+1][k+1]+DP[i-1][j][k])%mod
        DP[i][0][k]=(DP[i][0][k]+DP[i-1][j][k])%mod
ANS=0
T=[1]
for i in range(M+1):
  T.append(T[i]*2%mod)
for i in range(M+1):
  for j in range(M+1):
    ANS+=DP[M][i][j]*T[j]%mod
print(ANS%mod)
0