fix: corrected logic inside answer-corret file

This commit is contained in:
2025-10-31 12:28:02 -03:00
parent 2c3cad4b3e
commit de5740834b

View File

@@ -20,7 +20,7 @@ int main()
{ {
int t; int t;
cin >> t; cin >> t;
if (!servers.empty() && t - (-servers.top()) >= 1000) while (!servers.empty() && t - (-servers.top()) >= 1000)
{ {
servers.pop(); servers.pop();
} }