結果
問題 | No.2783 4-33 Easy |
ユーザー | tkykwtnb |
提出日時 | 2024-06-15 09:45:00 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 964 bytes |
コンパイル時間 | 365 ms |
コンパイル使用メモリ | 82,524 KB |
実行使用メモリ | 456,060 KB |
最終ジャッジ日時 | 2024-06-15 09:45:05 |
合計ジャッジ時間 | 5,080 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 61 ms
77,508 KB |
testcase_01 | AC | 86 ms
77,184 KB |
testcase_02 | AC | 137 ms
81,376 KB |
testcase_03 | AC | 94 ms
77,080 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
ソースコード
from collections import defaultdict N=int(input()) A=["-1"]+list(input().split()) B=["-1"]+list(input().split()) N+=1 X=[0 for _ in range(N)] for i in range(N): if B[i][-1]=="X": if B[i]=="X": A[i]=int(A[i]) B[i]=0 X[i]=1 elif B[i][:-1]=="33": A[i]=int(A[i]) B[i]=33 X[i]=1 else: A[i]=-1;B[i]=-1 else: A[i]=int(A[i]) B[i]=int(B[i]) DP=[[defaultdict(int) for _ in range(10)] for _ in range(N)] DP[0][0][(0,0,0)]=1 for i in range(1,N): for j in range(10): for (a,b,x),v in DP[i-1][j].items(): # i枚目のカードを使わない DP[i][j][(a,b,x)]+=DP[i-1][j][(a,b,x)] # i枚目のカードを使う if A[i]!=-1 and j<9 and a+A[i]<=4 and b+B[i]<=33 and x+X[i]<=1: DP[i][j+1][(a+A[i],b+B[i],x+X[i])]+=DP[i-1][j][(a,b,x)] print(DP[N-1][9][(4,33,1)]%998244353)