結果

問題 No.1703 Much Matching
ユーザー 河野竜也河野竜也
提出日時 2022-06-22 22:26:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 686 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 88,184 KB
最終ジャッジ日時 2024-11-06 09:05:02
合計ジャッジ時間 7,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,640 KB
testcase_01 AC 40 ms
53,360 KB
testcase_02 AC 41 ms
53,476 KB
testcase_03 AC 53 ms
65,668 KB
testcase_04 AC 55 ms
66,948 KB
testcase_05 AC 59 ms
71,268 KB
testcase_06 AC 240 ms
79,620 KB
testcase_07 AC 81 ms
76,732 KB
testcase_08 AC 271 ms
88,184 KB
testcase_09 AC 286 ms
85,108 KB
testcase_10 AC 103 ms
78,928 KB
testcase_11 AC 125 ms
79,380 KB
testcase_12 AC 81 ms
77,228 KB
testcase_13 AC 155 ms
78,528 KB
testcase_14 AC 71 ms
73,548 KB
testcase_15 AC 126 ms
81,384 KB
testcase_16 AC 178 ms
78,040 KB
testcase_17 AC 201 ms
78,612 KB
testcase_18 AC 68 ms
71,096 KB
testcase_19 AC 339 ms
83,740 KB
testcase_20 AC 97 ms
76,736 KB
testcase_21 AC 386 ms
81,428 KB
testcase_22 AC 210 ms
82,048 KB
testcase_23 AC 174 ms
81,644 KB
testcase_24 AC 70 ms
71,452 KB
testcase_25 AC 90 ms
78,240 KB
testcase_26 AC 150 ms
81,616 KB
testcase_27 AC 208 ms
80,908 KB
testcase_28 AC 348 ms
83,104 KB
testcase_29 AC 133 ms
83,132 KB
testcase_30 AC 159 ms
82,396 KB
testcase_31 AC 86 ms
78,852 KB
testcase_32 AC 225 ms
82,028 KB
testcase_33 AC 185 ms
85,332 KB
testcase_34 AC 85 ms
77,364 KB
testcase_35 AC 103 ms
77,900 KB
testcase_36 AC 686 ms
85,116 KB
testcase_37 AC 97 ms
87,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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