[C++] 백준 투명
https://www.acmicpc.net/problem/1531 #include #include #include using namespace std;int main(){ ios::sync_with_stdio(false); cin.tie(0), cout.tie(0); // freopen("input.txt", "r", stdin); int N, M, lx, ly, rx, ry; int ans = 0; cin >> N >> M; vector> p(102, vector(102, 0)); for (int i = 0; i > lx >> ly >> rx >> ry; for (int row = lx; row M) ans++; } ..
2024. 6. 18.