QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#609306 | #9415. Matrix | UESTC_Snow_Halation# | AC ✓ | 1ms | 3840kb | C++14 | 1.3kb | 2024-10-04 11:57:20 | 2024-10-04 11:57:21 |
Judging History
answer
#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cmath>
#define FOR() ll le=e[u].size();for(ll i=0;i<le;i++)
#define QWQ cout<<"QwQ\n";
#define ll long long
#include <vector>
#include <queue>
#include <map>
using namespace std;
const ll N=1201010;
const ll qwq=303030;
const ll inf=0x3f3f3f3f;
inline ll read() {
ll sum = 0, ff = 1; char c = getchar();
while(c<'0' || c>'9') { if(c=='-') ff = -1; c = getchar(); }
while(c>='0'&&c<='9') { sum = sum * 10 + c - '0'; c = getchar(); }
return sum * ff;
}
ll T;
int n;
int a[555][555];
int main() {
n = read();
cout<<"Yes\n";
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++) {
if(j>=i) a[i][j] = j*2-1;
else a[i][j] = i*2;
}
a[1][1] = 1;
a[1][2] = 2;
a[2][1] = 3;
a[2][2] = 4;
// int ci = 0;
// for(int i=1;i<=n;i++) for(int j=i+1;j<=n;j++) for(int k=1;k<=n;k++) for(int l=k+1;l<=n;l++)
// if(a[i][k]!=a[j][k] && a[i][k]!=a[i][l] && a[i][k]!=a[j][l] && a[i][l]!=a[j][k] && a[i][l]!=a[j][l] && a[j][k]!=a[j][l]) ci++;
// cout<<ci;
for(int i=1;i<=n;i++) for(int j=1;j<=n;j++) cout<<a[i][j]<<" \n"[j==n];
return 0;
}
/*
6
7 3
12 3
9 10
249 51
1369 37
2 1
1
11111111111104999999999 104
*/
这程序好像有点Bug,我给组数据试试?
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3668kb
input:
2
output:
Yes 1 2 3 4
result:
ok Correct. (1 test case)
Test #2:
score: 0
Accepted
time: 0ms
memory: 3652kb
input:
3
output:
Yes 1 2 5 3 4 5 6 6 5
result:
ok Correct. (1 test case)
Test #3:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
4
output:
Yes 1 2 5 7 3 4 5 7 6 6 5 7 8 8 8 7
result:
ok Correct. (1 test case)
Test #4:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
5
output:
Yes 1 2 5 7 9 3 4 5 7 9 6 6 5 7 9 8 8 8 7 9 10 10 10 10 9
result:
ok Correct. (1 test case)
Test #5:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
6
output:
Yes 1 2 5 7 9 11 3 4 5 7 9 11 6 6 5 7 9 11 8 8 8 7 9 11 10 10 10 10 9 11 12 12 12 12 12 11
result:
ok Correct. (1 test case)
Test #6:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
7
output:
Yes 1 2 5 7 9 11 13 3 4 5 7 9 11 13 6 6 5 7 9 11 13 8 8 8 7 9 11 13 10 10 10 10 9 11 13 12 12 12 12 12 11 13 14 14 14 14 14 14 13
result:
ok Correct. (1 test case)
Test #7:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
8
output:
Yes 1 2 5 7 9 11 13 15 3 4 5 7 9 11 13 15 6 6 5 7 9 11 13 15 8 8 8 7 9 11 13 15 10 10 10 10 9 11 13 15 12 12 12 12 12 11 13 15 14 14 14 14 14 14 13 15 16 16 16 16 16 16 16 15
result:
ok Correct. (1 test case)
Test #8:
score: 0
Accepted
time: 0ms
memory: 3696kb
input:
9
output:
Yes 1 2 5 7 9 11 13 15 17 3 4 5 7 9 11 13 15 17 6 6 5 7 9 11 13 15 17 8 8 8 7 9 11 13 15 17 10 10 10 10 9 11 13 15 17 12 12 12 12 12 11 13 15 17 14 14 14 14 14 14 13 15 17 16 16 16 16 16 16 16 15 17 18 18 18 18 18 18 18 18 17
result:
ok Correct. (1 test case)
Test #9:
score: 0
Accepted
time: 1ms
memory: 3684kb
input:
10
output:
Yes 1 2 5 7 9 11 13 15 17 19 3 4 5 7 9 11 13 15 17 19 6 6 5 7 9 11 13 15 17 19 8 8 8 7 9 11 13 15 17 19 10 10 10 10 9 11 13 15 17 19 12 12 12 12 12 11 13 15 17 19 14 14 14 14 14 14 13 15 17 19 16 16 16 16 16 16 16 15 17 19 18 18 18 18 18 18 18 18 17 19 20 20 20 20 20 20 20 20 20 19
result:
ok Correct. (1 test case)
Test #10:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
11
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 3 4 5 7 9 11 13 15 17 19 21 6 6 5 7 9 11 13 15 17 19 21 8 8 8 7 9 11 13 15 17 19 21 10 10 10 10 9 11 13 15 17 19 21 12 12 12 12 12 11 13 15 17 19 21 14 14 14 14 14 14 13 15 17 19 21 16 16 16 16 16 16 16 15 17 19 21 18 18 18 18 18 18 18 18 17 19 21 20 20 20 20 20 20 20...
result:
ok Correct. (1 test case)
Test #11:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
12
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 3 4 5 7 9 11 13 15 17 19 21 23 6 6 5 7 9 11 13 15 17 19 21 23 8 8 8 7 9 11 13 15 17 19 21 23 10 10 10 10 9 11 13 15 17 19 21 23 12 12 12 12 12 11 13 15 17 19 21 23 14 14 14 14 14 14 13 15 17 19 21 23 16 16 16 16 16 16 16 15 17 19 21 23 18 18 18 18 18 18 18 18 17 19...
result:
ok Correct. (1 test case)
Test #12:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
13
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 3 4 5 7 9 11 13 15 17 19 21 23 25 6 6 5 7 9 11 13 15 17 19 21 23 25 8 8 8 7 9 11 13 15 17 19 21 23 25 10 10 10 10 9 11 13 15 17 19 21 23 25 12 12 12 12 12 11 13 15 17 19 21 23 25 14 14 14 14 14 14 13 15 17 19 21 23 25 16 16 16 16 16 16 16 15 17 19 21 23 25 18 18...
result:
ok Correct. (1 test case)
Test #13:
score: 0
Accepted
time: 0ms
memory: 3680kb
input:
14
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 3 4 5 7 9 11 13 15 17 19 21 23 25 27 6 6 5 7 9 11 13 15 17 19 21 23 25 27 8 8 8 7 9 11 13 15 17 19 21 23 25 27 10 10 10 10 9 11 13 15 17 19 21 23 25 27 12 12 12 12 12 11 13 15 17 19 21 23 25 27 14 14 14 14 14 14 13 15 17 19 21 23 25 27 16 16 16 16 16 16 16 15...
result:
ok Correct. (1 test case)
Test #14:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
15
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 12 12 12 12 12 11 13 15 17 19 21 23 25 27 29 14 14 14 14 14 14 13 15 17 19 21 23 25 27 29 16...
result:
ok Correct. (1 test case)
Test #15:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
16
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 12 12 12 12 12 11 13 15 17 19 21 23 25 27 29 31 14 14 14 14 14 14 13 15 17 19...
result:
ok Correct. (1 test case)
Test #16:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
17
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 12 12 12 12 12 11 13 15 17 19 21 23 25 27 29 31 33 14 14 14 14...
result:
ok Correct. (1 test case)
Test #17:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
18
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35 12 12 12 12 12 11 13 15 17 19 21 23 25 27 29 31...
result:
ok Correct. (1 test case)
Test #18:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
19
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 12 12 12 12 12 11 13 15 17 19 21...
result:
ok Correct. (1 test case)
Test #19:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
20
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 12 12 12 12 12 11...
result:
ok Correct. (1 test case)
Test #20:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
21
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 12...
result:
ok Correct. (1 test case)
Test #21:
score: 0
Accepted
time: 0ms
memory: 3700kb
input:
22
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 10 10 10 10 9 11 13 15 17 19 21 23 25 27 29 31 33 35...
result:
ok Correct. (1 test case)
Test #22:
score: 0
Accepted
time: 0ms
memory: 3708kb
input:
23
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 10 10 10 10 9 11 13 15 17 19 21 23 25 27...
result:
ok Correct. (1 test case)
Test #23:
score: 0
Accepted
time: 0ms
memory: 3712kb
input:
24
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 10 10 10 10 9 11 13 15 17 19...
result:
ok Correct. (1 test case)
Test #24:
score: 0
Accepted
time: 0ms
memory: 3772kb
input:
25
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 10 10 10 10 9 11...
result:
ok Correct. (1 test case)
Test #25:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
26
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 10 1...
result:
ok Correct. (1 test case)
Test #26:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
27
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 4...
result:
ok Correct. (1 test case)
Test #27:
score: 0
Accepted
time: 0ms
memory: 3736kb
input:
28
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 4...
result:
ok Correct. (1 test case)
Test #28:
score: 0
Accepted
time: 0ms
memory: 3652kb
input:
29
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 3...
result:
ok Correct. (1 test case)
Test #29:
score: 0
Accepted
time: 0ms
memory: 3720kb
input:
30
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 8 8 8 7 9 11 13 15 17 19 21 23 25 27 29 3...
result:
ok Correct. (1 test case)
Test #30:
score: 0
Accepted
time: 0ms
memory: 3728kb
input:
31
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 8 8 8 7 9 11 13 15 17 19 21 23 2...
result:
ok Correct. (1 test case)
Test #31:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
32
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 8 8 8 7 9 11 13 15 17 1...
result:
ok Correct. (1 test case)
Test #32:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
33
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 8 8 8 7 9 11 1...
result:
ok Correct. (1 test case)
Test #33:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
34
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 8 8 8...
result:
ok Correct. (1 test case)
Test #34:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
35
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67...
result:
ok Correct. (1 test case)
Test #35:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
36
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63...
result:
ok Correct. (1 test case)
Test #36:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
37
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59...
result:
ok Correct. (1 test case)
Test #37:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
38
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55...
result:
ok Correct. (1 test case)
Test #38:
score: 0
Accepted
time: 0ms
memory: 3776kb
input:
39
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51...
result:
ok Correct. (1 test case)
Test #39:
score: 0
Accepted
time: 0ms
memory: 3800kb
input:
40
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47...
result:
ok Correct. (1 test case)
Test #40:
score: 0
Accepted
time: 0ms
memory: 3764kb
input:
41
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43...
result:
ok Correct. (1 test case)
Test #41:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
42
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39...
result:
ok Correct. (1 test case)
Test #42:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
43
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35...
result:
ok Correct. (1 test case)
Test #43:
score: 0
Accepted
time: 0ms
memory: 3812kb
input:
44
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 6 6 5 7 9 11 13 15 17 19 21 23 25 27 29 31...
result:
ok Correct. (1 test case)
Test #44:
score: 0
Accepted
time: 0ms
memory: 3840kb
input:
45
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 6 6 5 7 9 11 13 15 17 19 21 23 25 27...
result:
ok Correct. (1 test case)
Test #45:
score: 0
Accepted
time: 1ms
memory: 3752kb
input:
46
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 6 6 5 7 9 11 13 15 17 19 21 23...
result:
ok Correct. (1 test case)
Test #46:
score: 0
Accepted
time: 0ms
memory: 3696kb
input:
47
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 6 6 5 7 9 11 13 15 17 19...
result:
ok Correct. (1 test case)
Test #47:
score: 0
Accepted
time: 0ms
memory: 3704kb
input:
48
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 6 6 5 7 9 11 13 15...
result:
ok Correct. (1 test case)
Test #48:
score: 0
Accepted
time: 0ms
memory: 3712kb
input:
49
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 6 6 5 7 9 11...
result:
ok Correct. (1 test case)
Test #49:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
50
output:
Yes 1 2 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99 3 4 5 7 9 11 13 15 17 19 21 23 25 27 29 31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77 79 81 83 85 87 89 91 93 95 97 99 6 6 5 ...
result:
ok Correct. (1 test case)
Extra Test:
score: 0
Extra Test Passed