AtCoder Beginner Contest 369 - AtCoder A - 369 O(1) でミスなく解く自信がなかったので全探索 #include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0;i<n;i++) #define endl '\n' int main() { int a,b; cin >> a >> b; int ans = 0; for(int c = -100; c <= 200; c++) { vector<int> t = { a,b,c }; sort(t.begin()…