結果

問題 No.1703 Much Matching
ユーザー ああいいああいい
提出日時 2021-12-31 17:37:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-10-08 17:26:45
合計ジャッジ時間 30,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,744 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 266 ms
14,720 KB
testcase_04 AC 189 ms
13,312 KB
testcase_05 AC 521 ms
19,072 KB
testcase_06 AC 1,245 ms
17,024 KB
testcase_07 AC 102 ms
11,392 KB
testcase_08 AC 1,647 ms
23,168 KB
testcase_09 AC 1,584 ms
19,584 KB
testcase_10 AC 300 ms
12,800 KB
testcase_11 AC 594 ms
16,640 KB
testcase_12 AC 132 ms
11,776 KB
testcase_13 AC 675 ms
15,360 KB
testcase_14 AC 60 ms
10,880 KB
testcase_15 AC 767 ms
20,352 KB
testcase_16 AC 759 ms
13,824 KB
testcase_17 AC 907 ms
14,592 KB
testcase_18 AC 45 ms
10,752 KB
testcase_19 AC 1,871 ms
18,304 KB
testcase_20 AC 242 ms
11,392 KB
testcase_21 TLE -
testcase_22 AC 1,267 ms
21,504 KB
testcase_23 AC 798 ms
16,000 KB
testcase_24 AC 61 ms
10,880 KB
testcase_25 AC 238 ms
13,184 KB
testcase_26 AC 910 ms
20,864 KB
testcase_27 AC 965 ms
14,848 KB
testcase_28 TLE -
testcase_29 AC 666 ms
17,408 KB
testcase_30 AC 752 ms
17,152 KB
testcase_31 AC 225 ms
13,440 KB
testcase_32 AC 1,231 ms
19,328 KB
testcase_33 AC 1,116 ms
21,888 KB
testcase_34 AC 111 ms
11,520 KB
testcase_35 AC 293 ms
13,184 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

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