結果

問題 No.1703 Much Matching
ユーザー ああいいああいい
提出日時 2021-12-31 17:38:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 668 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,540 KB
最終ジャッジ日時 2024-10-08 17:27:48
合計ジャッジ時間 10,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 56 ms
65,536 KB
testcase_04 AC 55 ms
65,920 KB
testcase_05 AC 58 ms
70,528 KB
testcase_06 AC 219 ms
79,248 KB
testcase_07 AC 80 ms
76,288 KB
testcase_08 AC 266 ms
87,540 KB
testcase_09 AC 277 ms
84,736 KB
testcase_10 AC 96 ms
78,256 KB
testcase_11 AC 115 ms
79,232 KB
testcase_12 AC 76 ms
77,184 KB
testcase_13 AC 140 ms
78,464 KB
testcase_14 AC 67 ms
72,064 KB
testcase_15 AC 118 ms
81,144 KB
testcase_16 AC 157 ms
78,068 KB
testcase_17 AC 186 ms
78,464 KB
testcase_18 AC 69 ms
70,656 KB
testcase_19 AC 306 ms
84,224 KB
testcase_20 AC 93 ms
76,544 KB
testcase_21 AC 350 ms
80,896 KB
testcase_22 AC 202 ms
81,280 KB
testcase_23 AC 174 ms
81,280 KB
testcase_24 AC 74 ms
71,424 KB
testcase_25 AC 90 ms
77,696 KB
testcase_26 AC 146 ms
80,896 KB
testcase_27 AC 199 ms
80,896 KB
testcase_28 AC 331 ms
82,976 KB
testcase_29 AC 126 ms
82,816 KB
testcase_30 AC 148 ms
81,664 KB
testcase_31 AC 83 ms
78,848 KB
testcase_32 AC 204 ms
81,780 KB
testcase_33 AC 173 ms
85,120 KB
testcase_34 AC 87 ms
76,800 KB
testcase_35 AC 107 ms
77,568 KB
testcase_36 AC 668 ms
84,608 KB
testcase_37 AC 99 ms
87,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for _ in range(Q):
    a,b = map(int,input().split())
    dat[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):
        dp[i][j] = max(dp[i-1][j],dp[i][j-1],dp[i-1][j-1] + dat[i][j])
print(dp[N][M])
0