この回もA問題のみでした。なかなか成長しません。
https://atcoder.jp/contests/abc377/tasks
A - Rearranging ABC
https://atcoder.jp/contests/abc377/tasks/abc377_a
S = input() s = list(set(S)) s.sort() if len(s) < 3: print("No") elif len(s) == 3: if s[0] == "A" and s[1] == "B" and s[2] == "C": print("Yes") else: print("No")