結果

問題 No.1703 Much Matching
ユーザー H3PO4H3PO4
提出日時 2021-10-08 22:40:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 89,776 KB
最終ジャッジ日時 2024-07-23 05:44:44
合計ジャッジ時間 6,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,644 KB
testcase_01 AC 40 ms
52,252 KB
testcase_02 AC 38 ms
53,108 KB
testcase_03 AC 54 ms
65,432 KB
testcase_04 AC 52 ms
64,412 KB
testcase_05 AC 58 ms
69,472 KB
testcase_06 AC 182 ms
82,568 KB
testcase_07 AC 73 ms
76,712 KB
testcase_08 AC 203 ms
82,428 KB
testcase_09 AC 204 ms
80,568 KB
testcase_10 AC 83 ms
77,492 KB
testcase_11 AC 106 ms
79,372 KB
testcase_12 AC 62 ms
73,260 KB
testcase_13 AC 118 ms
78,896 KB
testcase_14 AC 57 ms
67,784 KB
testcase_15 AC 110 ms
82,576 KB
testcase_16 AC 124 ms
77,948 KB
testcase_17 AC 141 ms
78,724 KB
testcase_18 AC 57 ms
67,028 KB
testcase_19 AC 225 ms
80,068 KB
testcase_20 AC 76 ms
76,768 KB
testcase_21 AC 267 ms
81,396 KB
testcase_22 AC 166 ms
81,476 KB
testcase_23 AC 133 ms
80,820 KB
testcase_24 AC 55 ms
67,268 KB
testcase_25 AC 76 ms
79,248 KB
testcase_26 AC 134 ms
85,184 KB
testcase_27 AC 144 ms
78,576 KB
testcase_28 AC 268 ms
83,172 KB
testcase_29 AC 110 ms
79,780 KB
testcase_30 AC 121 ms
79,364 KB
testcase_31 AC 67 ms
74,352 KB
testcase_32 AC 170 ms
84,712 KB
testcase_33 AC 148 ms
82,108 KB
testcase_34 AC 65 ms
74,380 KB
testcase_35 AC 85 ms
77,628 KB
testcase_36 AC 494 ms
84,252 KB
testcase_37 AC 102 ms
89,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

N, M, Q = map(int, input().split())

matr = [[False] * M for _ in range(N)]
for _ in range(Q):
    a, b = (int(x) - 1 for x in input().split())
    matr[a][b] = True

dp = [[0] * (M + 1) for _ in range(N + 1)]
for a in range(N):
    for b in range(M):
        if matr[a][b]:
            dp[a + 1][b + 1] = max(dp[a][b] + 1, dp[a + 1][b], dp[a][b + 1])
        else:
            dp[a + 1][b + 1] = max(dp[a + 1][b], dp[a][b + 1])
print(dp[-1][-1])
0