結果

問題 No.1703 Much Matching
ユーザー kohei2019kohei2019
提出日時 2023-06-04 18:22:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 213,760 KB
最終ジャッジ日時 2024-06-09 03:59:21
合計ジャッジ時間 9,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 55 ms
64,512 KB
testcase_04 AC 66 ms
65,792 KB
testcase_05 AC 64 ms
67,432 KB
testcase_06 AC 288 ms
97,664 KB
testcase_07 AC 86 ms
76,868 KB
testcase_08 AC 325 ms
105,452 KB
testcase_09 AC 361 ms
106,240 KB
testcase_10 AC 103 ms
77,696 KB
testcase_11 AC 142 ms
81,920 KB
testcase_12 AC 86 ms
76,648 KB
testcase_13 AC 171 ms
81,536 KB
testcase_14 AC 77 ms
72,320 KB
testcase_15 AC 142 ms
77,824 KB
testcase_16 AC 203 ms
86,400 KB
testcase_17 AC 240 ms
91,520 KB
testcase_18 AC 69 ms
70,784 KB
testcase_19 AC 436 ms
124,544 KB
testcase_20 AC 102 ms
76,844 KB
testcase_21 AC 513 ms
132,768 KB
testcase_22 AC 246 ms
91,964 KB
testcase_23 AC 194 ms
83,584 KB
testcase_24 AC 69 ms
71,552 KB
testcase_25 AC 90 ms
76,800 KB
testcase_26 AC 171 ms
78,720 KB
testcase_27 AC 259 ms
97,280 KB
testcase_28 AC 446 ms
117,888 KB
testcase_29 AC 147 ms
80,128 KB
testcase_30 AC 165 ms
81,536 KB
testcase_31 AC 89 ms
78,208 KB
testcase_32 AC 259 ms
96,512 KB
testcase_33 AC 203 ms
84,736 KB
testcase_34 AC 81 ms
76,740 KB
testcase_35 AC 107 ms
78,976 KB
testcase_36 AC 989 ms
213,760 KB
testcase_37 AC 94 ms
75,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,Q = map(int,input().split())
lsAB = [set() for i in range(N+1)]
for i in range(Q):
    a,b = map(int,input().split())
    lsAB[a].add(b)
dp = [[0]*(M+1) for i in range(N+1)]

for i in range(1,N+1):
    for j in range(1,M+1):
        if j in lsAB[i]:
            dp[i][j] = max(dp[i-1][j-1]+1,dp[i][j-1])
        else:
            dp[i][j] = max(dp[i-1][j],dp[i][j-1])
print(dp[-1][-1])
0