QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#749683#9546. Recover StatisticsForever_Young#WA 0ms3804kbC++20339b2024-11-15 09:12:232024-11-15 09:12:23

Judging History

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

  • [2024-11-15 09:12:23]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3804kb
  • [2024-11-15 09:12:23]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

int main() {
  int a, b, c;
  scanf("%d%d%d", &a, &b, &c);
  puts("100");
  for (int i = 1; i <= 50; i++) {
    printf("%d ", a);
  }
  for (int i = 1; i <= 45; i++) {
    printf("%d ", b);
  }

  for (int i = 1; i <= 5; i++) {
    printf("%d%c", c, " \n"[i == 5]);
  }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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