QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#713429#9546. Recover StatisticsHTensor#WA 0ms3696kbC++23463b2024-11-05 19:20:442024-11-05 19:20:45

Judging History

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

  • [2024-11-05 19:20:45]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3696kb
  • [2024-11-05 19:20:44]
  • 提交

answer

#include <bits/stdc++.h>
#define SZ(x) ((int)(x).size())
using namespace std;

// #define MULTI_TEST

void solve() {
    int a, b, c; cin >> a >> b >> c;
    cout << "100\n";
    for(int i = 1; i <= 50; i++) cout << a << " ";
    for(int i = 1; i <= 45; i++) cout << b << " ";
    for(int i = 1; i <= 5; i++) cout << c << " ";
}

signed main() {
    int T = 1; 
#ifdef MULTI_TEST
    cin >> T;
#endif
    while(T--) solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3696kb

input:

50
95
99

output:

100
50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 50 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 95 99 99 99 99...

result:

wrong answer wrong p99: 100 / 100