結果

問題 No.1703 Much Matching
ユーザー lloyzlloyz
提出日時 2023-08-01 07:30:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 696 ms / 2,000 ms
コード長 436 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,664 KB
最終ジャッジ日時 2024-10-10 23:44:08
合計ジャッジ時間 9,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 62 ms
67,840 KB
testcase_04 AC 64 ms
67,840 KB
testcase_05 AC 68 ms
72,832 KB
testcase_06 AC 244 ms
79,732 KB
testcase_07 AC 88 ms
76,784 KB
testcase_08 AC 277 ms
87,216 KB
testcase_09 AC 287 ms
82,540 KB
testcase_10 AC 109 ms
78,736 KB
testcase_11 AC 137 ms
82,016 KB
testcase_12 AC 84 ms
76,800 KB
testcase_13 AC 163 ms
78,592 KB
testcase_14 AC 74 ms
72,448 KB
testcase_15 AC 135 ms
80,972 KB
testcase_16 AC 180 ms
77,768 KB
testcase_17 AC 207 ms
78,464 KB
testcase_18 AC 74 ms
71,296 KB
testcase_19 AC 339 ms
82,640 KB
testcase_20 AC 96 ms
76,380 KB
testcase_21 AC 387 ms
80,892 KB
testcase_22 AC 219 ms
81,408 KB
testcase_23 AC 181 ms
81,172 KB
testcase_24 AC 72 ms
72,180 KB
testcase_25 AC 95 ms
77,392 KB
testcase_26 AC 160 ms
80,980 KB
testcase_27 AC 217 ms
80,000 KB
testcase_28 AC 367 ms
83,380 KB
testcase_29 AC 141 ms
81,124 KB
testcase_30 AC 166 ms
80,384 KB
testcase_31 AC 94 ms
77,952 KB
testcase_32 AC 228 ms
80,272 KB
testcase_33 AC 190 ms
83,408 KB
testcase_34 AC 84 ms
76,904 KB
testcase_35 AC 108 ms
79,104 KB
testcase_36 AC 696 ms
92,664 KB
testcase_37 AC 104 ms
85,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, q = map(int, input().split())
C = [[0 for _ in range(m)] for _ in range(n)]
for _ in range(q):
    a, b = map(int, input().split())
    C[a - 1][b - 1] = 1

DP = [[0 for _ in range(m + 1)] for _ in range(n + 1)]
for i in range(1, n + 1):
    for j in range(1, m + 1):
        if C[i - 1][j - 1] == 1:
            DP[i][j] = DP[i - 1][j - 1] + 1
        else:
            DP[i][j] = max(DP[i - 1][j], DP[i][j - 1])
print(DP[n][m])
0