結果

問題 No.1703 Much Matching
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-10-09 11:04:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 704 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 84,804 KB
最終ジャッジ日時 2024-07-26 13:02:04
合計ジャッジ時間 8,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,956 KB
testcase_01 AC 39 ms
53,088 KB
testcase_02 AC 38 ms
52,872 KB
testcase_03 AC 51 ms
63,956 KB
testcase_04 AC 54 ms
66,072 KB
testcase_05 AC 58 ms
67,256 KB
testcase_06 AC 241 ms
79,624 KB
testcase_07 AC 82 ms
76,900 KB
testcase_08 AC 267 ms
82,608 KB
testcase_09 AC 283 ms
80,900 KB
testcase_10 AC 99 ms
77,660 KB
testcase_11 AC 126 ms
79,432 KB
testcase_12 AC 78 ms
76,808 KB
testcase_13 AC 155 ms
79,160 KB
testcase_14 AC 69 ms
71,960 KB
testcase_15 AC 122 ms
81,220 KB
testcase_16 AC 173 ms
78,024 KB
testcase_17 AC 198 ms
78,404 KB
testcase_18 AC 66 ms
70,496 KB
testcase_19 AC 336 ms
79,936 KB
testcase_20 AC 94 ms
76,584 KB
testcase_21 AC 395 ms
80,804 KB
testcase_22 AC 212 ms
81,496 KB
testcase_23 AC 173 ms
79,464 KB
testcase_24 AC 70 ms
71,476 KB
testcase_25 AC 87 ms
78,144 KB
testcase_26 AC 149 ms
81,352 KB
testcase_27 AC 206 ms
78,588 KB
testcase_28 AC 352 ms
83,344 KB
testcase_29 AC 130 ms
79,788 KB
testcase_30 AC 162 ms
79,424 KB
testcase_31 AC 89 ms
77,680 KB
testcase_32 AC 226 ms
80,660 KB
testcase_33 AC 179 ms
82,024 KB
testcase_34 AC 81 ms
76,556 KB
testcase_35 AC 100 ms
78,120 KB
testcase_36 AC 704 ms
84,804 KB
testcase_37 AC 79 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,q = map(int,input().split())
dp = [[0] * (m+1) for _ in range(n+1)]
for i in range(q):
    a,b = map(int,input().split())
    dp[a][b] = 1
min_ = 0
for i in range(1,n+1):
    for j in range(1,m+1):
        if dp[i][j] == 1:
            dp[i][j] += dp[i-1][j-1]
        else:
            dp[i][j] = max(dp[i-1][j],dp[i][j-1])
        
#         for _ in dp:
#             print(_)
#         print(i,j)

print(dp[-1][-1])
0