QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#285744#5255. Greedy Drawerslight_ink_dots#WA 0ms3784kbC++14267b2023-12-16 22:00:582023-12-16 22:00:59

Judging History

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

  • [2023-12-16 22:00:59]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3784kb
  • [2023-12-16 22:00:58]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    scanf("%d", &n);
    for (int i = 1; i <= n; i++) printf("%d %d\n", 1, i << 1);
    printf("\n");
    for (int i = 1; i <= n; i++) printf("%d %d\n", 1, i << 1 | 1);
    return 0;
}

詳細信息

Test #1:

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

input:

150

output:

1 2
1 4
1 6
1 8
1 10
1 12
1 14
1 16
1 18
1 20
1 22
1 24
1 26
1 28
1 30
1 32
1 34
1 36
1 38
1 40
1 42
1 44
1 46
1 48
1 50
1 52
1 54
1 56
1 58
1 60
1 62
1 64
1 66
1 68
1 70
1 72
1 74
1 76
1 78
1 80
1 82
1 84
1 86
1 88
1 90
1 92
1 94
1 96
1 98
1 100
1 102
1 104
1 106
1 108
1 110
1 112
1 114
1 116
1 118...

result:

wrong answer Janko passed your test!