⌨️
[AtCoder]ABC-406|A - Not Acceptable
設問ページ
提出結果
def getIntMap():
return map(int, input().split())
def main():
A, B, C, D = getIntMap()
print("Yes" if A * 60 + B >= C * 60 + D else "No")
if __name__ == "__main__":
main()
def getIntMap():
return map(int, input().split())
def main():
A, B, C, D = getIntMap()
print("Yes" if A * 60 + B >= C * 60 + D else "No")
if __name__ == "__main__":
main()
Discussion