結果

問題 No.1703 Much Matching
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-08 22:51:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 93,172 KB
最終ジャッジ日時 2024-07-23 06:01:17
合計ジャッジ時間 8,137 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,408 KB
testcase_01 AC 38 ms
52,620 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 52 ms
66,268 KB
testcase_04 AC 55 ms
66,772 KB
testcase_05 AC 59 ms
70,556 KB
testcase_06 AC 252 ms
79,984 KB
testcase_07 AC 83 ms
76,772 KB
testcase_08 AC 281 ms
88,336 KB
testcase_09 AC 300 ms
85,052 KB
testcase_10 AC 106 ms
78,860 KB
testcase_11 AC 132 ms
79,240 KB
testcase_12 AC 83 ms
77,120 KB
testcase_13 AC 165 ms
78,788 KB
testcase_14 AC 72 ms
74,356 KB
testcase_15 AC 128 ms
81,296 KB
testcase_16 AC 184 ms
78,380 KB
testcase_17 AC 209 ms
78,640 KB
testcase_18 AC 70 ms
72,252 KB
testcase_19 AC 359 ms
84,252 KB
testcase_20 AC 99 ms
77,020 KB
testcase_21 AC 408 ms
81,512 KB
testcase_22 AC 221 ms
81,544 KB
testcase_23 AC 184 ms
81,940 KB
testcase_24 AC 70 ms
72,216 KB
testcase_25 AC 91 ms
77,764 KB
testcase_26 AC 152 ms
81,648 KB
testcase_27 AC 220 ms
80,980 KB
testcase_28 AC 369 ms
83,476 KB
testcase_29 AC 141 ms
83,348 KB
testcase_30 AC 163 ms
82,068 KB
testcase_31 AC 92 ms
79,280 KB
testcase_32 AC 231 ms
81,988 KB
testcase_33 AC 188 ms
85,520 KB
testcase_34 AC 82 ms
77,132 KB
testcase_35 AC 107 ms
79,228 KB
testcase_36 AC 720 ms
93,172 KB
testcase_37 AC 95 ms
87,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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