20240613

There are so many things to learn when exploring machine-learning. I need to understand how they work, read research paper, and learn how to implement the feature upon them.

1972A. Contest Proposal

for _ in range(int(input())):
    n = int(input())
    a = list(map(int, input().split()))
    b = list(map(int, input().split()))

    res = 0
    ai = 0
    for bi in range(n):
        if a[ai] > b[bi]:
            res += 1
        else:
            ai += 1

    print(res)

Sushi 800 Protein shake 200 Bagels 600

Total 1600 kcal

6k run push ups


TODO:


index 20240612 20240614