結果

問題 No.2772 Appearing Even Times
ユーザー PNJPNJ
提出日時 2024-05-31 21:59:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,132 ms / 4,000 ms
コード長 855 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 157,460 KB
最終ジャッジ日時 2024-05-31 21:59:31
合計ジャッジ時間 26,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,008 KB
testcase_01 AC 45 ms
60,224 KB
testcase_02 AC 43 ms
61,200 KB
testcase_03 AC 42 ms
60,904 KB
testcase_04 AC 44 ms
61,364 KB
testcase_05 AC 44 ms
60,032 KB
testcase_06 AC 48 ms
60,996 KB
testcase_07 AC 37 ms
52,932 KB
testcase_08 AC 2,118 ms
156,992 KB
testcase_09 AC 2,054 ms
157,460 KB
testcase_10 AC 46 ms
60,180 KB
testcase_11 AC 45 ms
61,824 KB
testcase_12 AC 2,085 ms
157,024 KB
testcase_13 AC 2,110 ms
156,284 KB
testcase_14 AC 2,132 ms
156,744 KB
testcase_15 AC 2,088 ms
156,872 KB
testcase_16 AC 2,123 ms
157,164 KB
testcase_17 AC 2,085 ms
156,924 KB
testcase_18 AC 2,067 ms
156,912 KB
testcase_19 AC 2,092 ms
156,616 KB
testcase_20 AC 2,033 ms
155,496 KB
testcase_21 AC 2,029 ms
155,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(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
mod = 998244353
N = input()
le = len(N)
dp = [[0 for j in range(1 << 10)] for i in range(le)]
S = 0
for i in range(le):
  for n in range(int(N[i])):
    if i == 0 and n == 0:
      continue
    dp[i][S ^ (1 << n)] += 1
  S ^= (1 << int(N[i]))
  if i == 0:
    continue
  for n in range(1,10):
    dp[i][1 << n] += 1
  for j in range(1 << 10):
    for n in range(10):
      dp[i][j ^ (1 << n)] = (dp[i][j ^ (1<<n)] + dp[i-1][j]) % mod

if S == 0:
  dp[-1][0] += 1
ans = dp[-1][0] % mod
print(ans)
0