Competitive Programming Weekly Solutions: Winter Algorithm Training Contests
2024 Nowcoder Winter Algorithm Training Camp 4
A - Lemon Soda
Check if the first value is at least k times the second value.
Complexity: O(1)
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int x, y, factor;
cin >> x >> y >> ...
Posted on Fri, 08 May 2026 03:23:40 +0000 by bigphpn00b