結果

問題 No.1703 Much Matching
ユーザー gr1msl3ygr1msl3y
提出日時 2022-02-23 23:47:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-07-02 00:00:10
合計ジャッジ時間 9,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 61 ms
65,024 KB
testcase_04 AC 65 ms
65,792 KB
testcase_05 AC 68 ms
70,272 KB
testcase_06 AC 295 ms
79,488 KB
testcase_07 AC 94 ms
76,544 KB
testcase_08 AC 288 ms
87,680 KB
testcase_09 AC 298 ms
85,120 KB
testcase_10 AC 116 ms
78,720 KB
testcase_11 AC 140 ms
79,360 KB
testcase_12 AC 94 ms
77,184 KB
testcase_13 AC 168 ms
78,592 KB
testcase_14 AC 83 ms
71,936 KB
testcase_15 AC 139 ms
81,408 KB
testcase_16 AC 186 ms
77,696 KB
testcase_17 AC 211 ms
78,464 KB
testcase_18 AC 78 ms
69,888 KB
testcase_19 AC 350 ms
83,584 KB
testcase_20 AC 108 ms
76,928 KB
testcase_21 AC 399 ms
80,896 KB
testcase_22 AC 221 ms
81,408 KB
testcase_23 AC 187 ms
81,408 KB
testcase_24 AC 81 ms
71,040 KB
testcase_25 AC 102 ms
77,696 KB
testcase_26 AC 162 ms
81,024 KB
testcase_27 AC 223 ms
80,768 KB
testcase_28 AC 368 ms
83,072 KB
testcase_29 AC 147 ms
83,072 KB
testcase_30 AC 168 ms
82,560 KB
testcase_31 AC 100 ms
78,848 KB
testcase_32 AC 238 ms
81,920 KB
testcase_33 AC 198 ms
85,120 KB
testcase_34 AC 93 ms
76,928 KB
testcase_35 AC 114 ms
77,440 KB
testcase_36 AC 698 ms
84,864 KB
testcase_37 AC 107 ms
87,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, Q = map(int, input().split())
A = [[0]*(M+1) for _ in range(N+1)]
for _ in range(Q):
    a, b = map(int, input().split())
    A[a][b] = 1

dp = [[0]*(M+1) for _ in range(N+1)]
for i in range(1, N+1):
    for j in range(1, M+1):
        if A[i][j]:
            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