AtCoder AtCoder Beginner Contest 207の感想
ABC207に参加した。 A - Repression 総和から最小値を引く。 abc = list(map(int, input().split())) ans = sum(abc) - min(abc) print(ans) B - H...
AtCoder
Python
Python