結果

問題 No.2711 Connecting Lights
ユーザー timitimi
提出日時 2024-03-31 19:31:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 678 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 76,392 KB
最終ジャッジ日時 2024-09-30 21:19:12
合計ジャッジ時間 5,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
52,680 KB
testcase_01 AC 42 ms
52,992 KB
testcase_02 AC 48 ms
62,228 KB
testcase_03 AC 40 ms
52,272 KB
testcase_04 AC 40 ms
53,064 KB
testcase_05 AC 64 ms
67,836 KB
testcase_06 AC 54 ms
62,580 KB
testcase_07 AC 52 ms
65,104 KB
testcase_08 AC 58 ms
65,640 KB
testcase_09 AC 254 ms
75,984 KB
testcase_10 AC 120 ms
75,912 KB
testcase_11 AC 166 ms
76,052 KB
testcase_12 AC 145 ms
76,144 KB
testcase_13 AC 138 ms
76,136 KB
testcase_14 AC 59 ms
66,772 KB
testcase_15 AC 107 ms
73,416 KB
testcase_16 AC 58 ms
67,260 KB
testcase_17 AC 61 ms
67,972 KB
testcase_18 AC 62 ms
68,736 KB
testcase_19 AC 142 ms
76,392 KB
testcase_20 AC 166 ms
75,940 KB
testcase_21 AC 57 ms
68,624 KB
testcase_22 AC 55 ms
65,304 KB
testcase_23 AC 54 ms
67,648 KB
testcase_24 AC 145 ms
75,876 KB
testcase_25 AC 210 ms
76,204 KB
testcase_26 AC 402 ms
76,160 KB
testcase_27 AC 212 ms
76,220 KB
testcase_28 AC 394 ms
76,212 KB
testcase_29 AC 183 ms
76,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int, input().split())
mod=998244353
dp=[1]*(2**N)
def popcnt(n):
  c = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555)
  c = (c & 0x3333333333333333) + ((c >> 2) & 0x3333333333333333)
  c = (c & 0x0f0f0f0f0f0f0f0f) + ((c >> 4) & 0x0f0f0f0f0f0f0f0f)
  c = (c & 0x00ff00ff00ff00ff) + ((c >> 8) & 0x00ff00ff00ff00ff)
  c = (c & 0x0000ffff0000ffff) + ((c >> 16) & 0x0000ffff0000ffff)
  c = (c & 0x00000000ffffffff) + ((c >> 32) & 0x00000000ffffffff)
  return c

for _ in range(M-1):
  ndp=[0]*(2**N)
  for i in range(2**N):
    for j in range(2**N):
      nex=i&j
      if popcnt(nex)>=K:
        ndp[j]+=dp[i]
        ndp[j]%=mod 
  dp=ndp 
print(sum(dp)%mod)
0