結果

問題 No.1703 Much Matching
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-10 01:02:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 691 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 88,448 KB
最終ジャッジ日時 2024-09-13 15:19:51
合計ジャッジ時間 9,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 62 ms
67,840 KB
testcase_04 AC 63 ms
69,248 KB
testcase_05 AC 71 ms
72,704 KB
testcase_06 AC 239 ms
79,632 KB
testcase_07 AC 86 ms
76,800 KB
testcase_08 AC 273 ms
88,448 KB
testcase_09 AC 288 ms
84,800 KB
testcase_10 AC 105 ms
78,848 KB
testcase_11 AC 132 ms
82,176 KB
testcase_12 AC 85 ms
77,064 KB
testcase_13 AC 157 ms
78,532 KB
testcase_14 AC 70 ms
72,448 KB
testcase_15 AC 129 ms
81,284 KB
testcase_16 AC 175 ms
78,048 KB
testcase_17 AC 198 ms
78,424 KB
testcase_18 AC 71 ms
71,936 KB
testcase_19 AC 338 ms
83,720 KB
testcase_20 AC 99 ms
76,592 KB
testcase_21 AC 392 ms
80,840 KB
testcase_22 AC 216 ms
81,456 KB
testcase_23 AC 178 ms
82,048 KB
testcase_24 AC 70 ms
71,808 KB
testcase_25 AC 89 ms
77,824 KB
testcase_26 AC 154 ms
81,152 KB
testcase_27 AC 217 ms
81,096 KB
testcase_28 AC 360 ms
83,260 KB
testcase_29 AC 143 ms
83,328 KB
testcase_30 AC 161 ms
81,796 KB
testcase_31 AC 91 ms
78,260 KB
testcase_32 AC 228 ms
81,768 KB
testcase_33 AC 189 ms
84,864 KB
testcase_34 AC 85 ms
76,708 KB
testcase_35 AC 107 ms
79,280 KB
testcase_36 AC 691 ms
85,120 KB
testcase_37 AC 104 ms
87,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0]*(m+1) for i in range(n+1)]
for i in range(n):
    for j in range(m):
        if M[i][j] == 1:
            dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j]+1)
        dp[i+1][j+1] = max(dp[i+1][j+1], dp[i+1][j])
        dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j+1])
print(dp[n][m])
0