QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#642324#9423. Gold MedalAndevikingWA 1ms3804kbC++20838b2024-10-15 13:04:352024-10-15 13:04:36

Judging History

你现在查看的是最新测评结果

  • [2024-10-15 13:04:36]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3804kb
  • [2024-10-15 13:04:35]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
#define range(x) (x).begin(), (x).end()
const int dir[][2] = {1, 0, -1, 0, 0, 1, 0, -1};

void solve()
{
    int n, k;
    cin >> n >> k;
    multiset<int> st;
    ll ans = 0;
    for (int i = 1; i <= n; ++i) {
        int x;
        cin >> x;
        int del = x % k;
        ans += x / k;
        del = k - del;
        if (del != k)
            st.insert(del);
    }

    int m;
    cin >> m;
    while (!st.empty()) {
        if (m < *st.begin())
            break;
        else
            ans++;
        st.erase(st.begin());
    }

    ans += m / k;
    cout << ans << '\n';
}

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int t = 1;
    cin >> t;
    while (t--)
        solve();
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3804kb

input:

2
3 10
239 141 526
6
2 1
300 100
1000

output:

91
1400

result:

ok 2 lines

Test #2:

score: -100
Wrong Answer
time: 1ms
memory: 3552kb

input:

100
39 88
746 86884 628655 868 87506 46761498 3338 91952768 312 9712 5277106 2263554 246545 98849 91459 6 5506 4 17626 5984050 32079 10 7672277 8104250 62 8976 866448 1 4 62240996 93128 181 6 9 5 175665 9 7680943 81
239822
9 200383
53147 17 82509 3 617847780 418677763 5402536 16 38253558
79857
66 60...

output:

2734476
5390
65
0
66483181
44507
54
0
166366083
76709
114876538
0
13172
1427237725
12532
19439
0
35669
4
266
34841133
731790829
61
11
0
51508708
2
262191
175
6286240839
0
1045
293089
167116
4
141328
455003478
86185519
14
1963
11
491358
163
9033
3869760302
14424354
31849
560672
133717
6261
99
11995
2...

result:

wrong answer 1st lines differ - expected: '2734453', found: '2734476'