結果

問題 No.580 旅館の予約計画
ユーザー rlangevinrlangevin
提出日時 2024-01-12 08:56:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 68,124 KB
最終ジャッジ日時 2024-09-27 20:46:42
合計ジャッジ時間 2,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,696 KB
testcase_01 AC 35 ms
52,416 KB
testcase_02 AC 34 ms
52,824 KB
testcase_03 AC 34 ms
53,132 KB
testcase_04 AC 37 ms
53,072 KB
testcase_05 AC 35 ms
52,464 KB
testcase_06 AC 37 ms
53,160 KB
testcase_07 AC 40 ms
59,760 KB
testcase_08 AC 39 ms
53,048 KB
testcase_09 AC 40 ms
59,616 KB
testcase_10 AC 44 ms
60,160 KB
testcase_11 AC 42 ms
60,636 KB
testcase_12 AC 45 ms
62,120 KB
testcase_13 AC 42 ms
60,232 KB
testcase_14 AC 43 ms
62,752 KB
testcase_15 AC 51 ms
67,300 KB
testcase_16 AC 52 ms
67,004 KB
testcase_17 AC 49 ms
66,228 KB
testcase_18 AC 52 ms
67,804 KB
testcase_19 AC 51 ms
65,776 KB
testcase_20 AC 49 ms
66,512 KB
testcase_21 AC 51 ms
66,488 KB
testcase_22 AC 46 ms
63,668 KB
testcase_23 AC 51 ms
66,632 KB
testcase_24 AC 50 ms
66,468 KB
testcase_25 AC 48 ms
66,016 KB
testcase_26 AC 37 ms
59,260 KB
testcase_27 AC 39 ms
58,372 KB
testcase_28 AC 34 ms
53,216 KB
testcase_29 AC 35 ms
52,824 KB
testcase_30 AC 52 ms
67,304 KB
testcase_31 AC 51 ms
66,712 KB
testcase_32 AC 53 ms
67,260 KB
testcase_33 AC 51 ms
67,428 KB
testcase_34 AC 51 ms
68,124 KB
testcase_35 AC 34 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def f(d, hm):
    d = int(d)
    h, m = map(int, hm.split(":"))
    return d * 1440 + h * 60 + m

N, M = map(int, input().split())
D = []
for i in range(M):
    d1, hm1, d2, hm2 = input().split()
    D.append((f(d2, hm2), f(d1, hm1)))
    
D.sort()
ans = 0
now = [-1] * N
for r, l in D:
    ind = -1
    maxv = -10
    for i in range(N):
        if now[i] < l and now[i] > maxv:
            ind = i
            maxv = now[i]
    if ind == -1:
        continue
    ans += 1
    now[ind] = r
    
print(ans)
0