Notice
Recent Posts
Link
목록2025/01/03 (1)
정화 코딩
[C++] 수위 아저씨의 고민 (백준 9048번)
https://www.acmicpc.net/problem/9048 #include #include using namespace std;int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int t; cin >> t; while (t--) { int f, r, n; cin >> f >> r >> n; int ans = 2 * f + (r + 1); vector up(f + 1, 0); vector down(f + 1, r + 1); for (int i = 0; i > a >> b; if (b 처음에는 각 ..
PS
2025. 1. 3. 21:53