⌨️

[AtCoder]ABC-298|A - Job Interview

2023/09/04に公開

設問ページ

提出結果

def getInt():
    return int(input())


def getString():
    return input()


def main():
    n = getInt()
    s = getString()

    print('Yes' if s.count('o') > 0 and s.count('x') == 0 else 'No')


if __name__ == "__main__":
    main()

Discussion