QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#624649 | #9134. Building a Fence | ticking_away# | WA | 1ms | 3656kb | C++20 | 1.8kb | 2024-10-09 16:19:40 | 2024-10-09 16:19:40 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using ui = unsigned int;
using ull = unsigned long long;
using ll = long long;
#define endl '\n'
using pii = pair<int, int>;
using pll = pair<ll, ll>;
const int maxn = 2e5 + 10;
const int mod = 1000000007;
#define inl inline
#define fr(i, a, b) for (int i = a; i <= b; i++)
#define ford(i, a, b) for (int i = a; i >= b; i--)
#define forall(i, a) for (auto &i : a)
/**
____ ___ _____
/ ___| _ _ / _ \___ /
\___ \| | | | | | ||_ \
___) | |_| | |_| |__) |
|____/ \__, |\___/____/
|___/
*/
istream &operator>>(istream &in, vector<int> &v)
{
for (auto &i : v)
in >> i;
return in;
}
ostream &operator<<(ostream &out, vector<int> &v)
{
for (auto &i : v)
out << i << " ";
return out;
}
bool _output = 1;
#define int ll
void solve()
{
int a, b, s;
cin >> a >> b >> s;
if (a < b)
swap(a, b);
int ans = -1;
auto make = [](int x, int y)
{
return (x + y - 1) / y;
};
if (s <= b)
ans = make(2 * (a + b), s);
else if (a >= s && s > b)
{
if (2 * a + b >= 2 * s)
ans = make(2 * (a + b), s);
else if (2 * (a + b) == 3 * s)
ans = 3;
else
ans = 4;
}
else
{
if (a + b == s)
ans = 2;
else if (2 * b == s || 2 * a == s || 2 * (a + b) == 3 * s || 2 * a + b == 2 * s || a + 2 * b == 2 * s)
ans = 3;
else
ans = 4;
}
assert(ans != -1);
cout << ans << endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int _ = 1;
if (_output)
cin >> _;
while (_--)
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3580kb
input:
7 7 9 4 1 1 2 1 1 4 4 6 2 3 3 5 10 6 4 1 11 5
output:
8 2 4 10 4 8 5
result:
ok 7 numbers
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 3656kb
input:
8000 1 1 1 1 1 2 1 1 3 1 1 4 1 1 5 1 1 6 1 1 7 1 1 8 1 1 9 1 1 10 1 1 11 1 1 12 1 1 13 1 1 14 1 1 15 1 1 16 1 1 17 1 1 18 1 1 19 1 1 20 1 2 1 1 2 2 1 2 3 1 2 4 1 2 5 1 2 6 1 2 7 1 2 8 1 2 9 1 2 10 1 2 11 1 2 12 1 2 13 1 2 14 1 2 15 1 2 16 1 2 17 1 2 18 1 2 19 1 2 20 1 3 1 1 3 2 1 3 3 1 3 4 1 3 5 1 3...
output:
4 2 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6 3 2 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 8 4 3 2 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 10 5 4 3 2 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 12 6 4 3 3 2 4 4 4 3 4 4 4 4 4 4 4 4 4 4 14 7 5 4 3 3 2 4 4 4 4 3 4 4 4 4 4 4 4 4 16 8 6 4 4 3 3 2 4 4 4 4 4 3 4 4 4 4 4 4 18 9 6 5 4 3 3 3...
result:
wrong answer 43rd numbers differ - expected: '4', found: '3'