⌨️

[AtCoder]ABC-245|A - Good morning

2023/06/15に公開

設問ページ

提出結果

def getIntMap():
    return map(int, input().split())

def m(x, y):
    return x * 60 + y

def main():
    a, b, c, d = getIntMap()

    print('Takahashi' if m(a, b) <= m(c, d) else 'Aoki')

if __name__ == "__main__":
    main()

Discussion