結果

問題 No.1703 Much Matching
ユーザー Kiri8128Kiri8128
提出日時 2021-10-08 22:41:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 292 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 154,484 KB
最終ジャッジ日時 2024-07-23 05:46:52
合計ジャッジ時間 17,897 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,324 KB
testcase_01 AC 36 ms
52,552 KB
testcase_02 AC 37 ms
52,768 KB
testcase_03 AC 40 ms
60,784 KB
testcase_04 AC 45 ms
62,464 KB
testcase_05 AC 45 ms
63,584 KB
testcase_06 AC 725 ms
88,172 KB
testcase_07 AC 81 ms
76,600 KB
testcase_08 AC 941 ms
89,408 KB
testcase_09 AC 942 ms
92,000 KB
testcase_10 AC 145 ms
77,092 KB
testcase_11 AC 200 ms
77,584 KB
testcase_12 AC 86 ms
76,708 KB
testcase_13 AC 295 ms
79,744 KB
testcase_14 AC 71 ms
76,368 KB
testcase_15 AC 189 ms
77,800 KB
testcase_16 AC 412 ms
81,688 KB
testcase_17 AC 388 ms
83,384 KB
testcase_18 AC 70 ms
76,796 KB
testcase_19 AC 1,203 ms
101,300 KB
testcase_20 AC 139 ms
77,772 KB
testcase_21 AC 1,271 ms
106,024 KB
testcase_22 AC 622 ms
83,912 KB
testcase_23 AC 316 ms
80,160 KB
testcase_24 AC 72 ms
76,684 KB
testcase_25 AC 97 ms
76,808 KB
testcase_26 AC 313 ms
78,808 KB
testcase_27 AC 443 ms
84,280 KB
testcase_28 AC 1,410 ms
98,880 KB
testcase_29 AC 226 ms
77,792 KB
testcase_30 AC 324 ms
78,916 KB
testcase_31 AC 86 ms
76,960 KB
testcase_32 AC 651 ms
85,628 KB
testcase_33 AC 451 ms
80,932 KB
testcase_34 AC 84 ms
76,516 KB
testcase_35 AC 123 ms
77,124 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, Q = map(int, input().split())
X = [[] for _ in range(N)]
for _ in range(Q):
    a, b = map(int, input().split())
    X[a-1].append(b - 1)

Y = [0] * (M + 1)
for i, x in enumerate(X):
    nY = Y[:]
    for b in x:
        nY[b+1] = max(nY[b+1], max(Y[:b+1]) + 1)
    Y = nY
print(max(Y))
0