QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#116281 | #6661. 야유회 | xtqqwq# | 5 | 2052ms | 11064kb | C++14 | 4.3kb | 2023-06-28 12:58:18 | 2024-05-31 18:27:29 |
Judging History
answer
#include<bits/stdc++.h>
#include "workshop.h"
#define pb push_back
#define fi first
#define se second
#define mp make_pair
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef long double ld;
template <typename T> bool chkmin(T &x,T y){return x>y?x=y,1:0;}
template <typename T> bool chkmax(T &x,T y){return x<y?x=y,1:0;}
const int B=21,M=100000;
int cnt;
int per[100005];
mt19937 mrand(1);
namespace sub1{
const int C=5,N=7;
int pw[10];
int p[1000005],col[1000005],fix[1000005];
vector<int> adj[1000005];
bool vis[1000005];
int id(int x,int y,int z){return (x-1)*N*N+(y-1)*N+z;}
void change(int x){
int num[C]={0};
for(auto v:adj[x]) num[col[v]]++;
vector<int> co(0);
int mina=1<<30;
for(int k=0;k<C;k++){
if(chkmin(mina,num[k])) co.clear(),co.pb(k);
else if(mina==num[k]) co.pb(k);
}
int pl=mrand()%co.size();
cnt-=num[col[x]];
cnt+=mina;
col[x]=co[pl];
}
void work(){
pw[0]=1;
for(int i=1;i<=6;i++) pw[i]=pw[i-1]*N;
for(int i=0;i<N;i++){
int mask=0;
for(int j=0;j<6;j++) mask+=pw[j]*i;
vis[mask]=1;
}
for(int i=0;i<pw[6];i++){
if(vis[i]) continue;
int t=i/pw[5];
for(int j=0;j<N;j++){
int to=i%pw[5]*N+j;
if(vis[to]) continue;
adj[i].pb(to);
adj[to].pb(i);
}
}
for(int i=0;i<pw[6];i++) p[i]=i,fix[i]=-1;
for(int i=0;i<pw[6];i++){
int tmp=i/pw[5];
bool fl=0;
for(int j=1;j<6;j++) if(i/pw[j]%N!=tmp) fl=1;
if(!fl) fix[i]=0;
}
for(int i=0;i<pw[6];i++){
int tmp=i%N;
bool fl=0;
for(int j=0;j<5;j++) if(i/pw[j]%N!=tmp) fl=1;
if(!fl) fix[i]=1;
}
while(1){
cnt=0;
for(int i=0;i<pw[6];i++){
col[i]=mrand()%C;
if(fix[i]>=0) col[i]=fix[i];
}
for(int i=0;i<pw[6];i++) for(auto v:adj[i]) if(col[i]==col[v]) cnt++;
cnt>>=1;
for(int i=1;i<=1000;i++){
// cout<<"cnt "<<cnt<<endl;
shuffle(p,p+pw[6],mrand);
for(int i=0;i<pw[6];i++) if(fix[p[i]]<0) change(p[i]);
if(!cnt) break;
}
if(!cnt) break;
}
}
}
namespace sub2{
const int C=3,N=3;
int pw[10];
int p[1000005],col[1000005];
vector<int> adj[1000005];
bool vis[1000005];
int id(int x,int y,int z){return (x-1)*N*N+(y-1)*N+z;}
void change(int x){
int num[C]={0};
for(auto v:adj[x]) num[col[v]]++;
vector<int> co(0);
int mina=1<<30;
for(int k=0;k<C;k++){
if(chkmin(mina,num[k])) co.clear(),co.pb(k);
else if(mina==num[k]) co.pb(k);
}
int pl=mrand()%co.size();
cnt-=num[col[x]];
cnt+=mina;
col[x]=co[pl];
}
void work(){
pw[0]=1;
for(int i=1;i<=6;i++) pw[i]=pw[i-1]*N;
for(int i=0;i<N;i++){
int mask=0;
for(int j=0;j<6;j++) mask+=pw[j]*i;
vis[mask]=1;
}
for(int i=0;i<pw[6];i++){
if(vis[i]) continue;
int t=i/pw[5];
for(int j=0;j<N;j++){
int to=i%pw[5]*N+j;
if(vis[to]) continue;
adj[i].pb(to);
adj[to].pb(i);
}
}
for(int i=1;i<=pw[6];i++) p[i]=i;
while(1){
cnt=0;
for(int i=1;i<=pw[6];i++) col[i]=mrand()%C;
for(int i=1;i<=pw[6];i++) for(auto v:adj[i]) if(col[i]==col[v]) cnt++;
cnt>>=1;
for(int i=1;i<=1000;i++){
// cout<<"cnt "<<cnt<<endl;
shuffle(p+1,p+pw[6]+1,mrand);
for(int i=1;i<=pw[6];i++) change(p[i]);
if(!cnt) break;
}
if(cnt<=15) break;
}
}
}
void init(){
for(int i=0;i<M;i++) per[i]=i;
shuffle(per,per+M,mrand);
sub1::work();
sub2::work();
}
int morning(int my_num,int right_num){
return per[my_num]%B*B+per[right_num]%B;
}
int afternoon(int left_num, int my_num, int right_num){
int t1=left_num/B;
int t2=my_num/B;
int t3=right_num/B;
int t4=right_num%B;
return t1*B*B*B+t2*B*B+t3*B+t4;
}
int evening(int left_num, int my_num, int right_num){
int b=sub1::N,tb=sub2::N;
int t1=left_num/B/B/B;
int t2=my_num/B/B/B;
int t3=right_num/B/B/B;
int t4=right_num%(B*B*B)/B/B;
int t5=right_num%(B*B)/B;
int t6=right_num%B;
int a1=t1%b;
int a2=t2%b;
int a3=t3%b;
int a4=t4%b;
int a5=t5%b;
int a6=t6%b;
int b1=t1/b;
int b2=t2/b;
int b3=t3/b;
int b4=t4/b;
int b5=t5/b;
int b6=t6/b;
int mask1=a1*b*b*b*b*b+a2*b*b*b*b+a3*b*b*b+a4*b*b+a5*b+a6;
int mask2=b1*tb*tb*tb*tb*tb+b2*tb*tb*tb*tb+b3*tb*tb*tb+b4*tb*tb+b5*tb+b6;
int ret=0;
if(sub1::vis[mask1]) ret=sub2::col[mask2]+2;
else ret=sub1::col[mask1];
return ret;
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 5
Accepted
Test #1:
score: 5
Accepted
time: 1390ms = 1389ms + 1ms
memory: 5532kb,4316kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 1 2 40 40 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 40 0 3 1 5 7 9 6 4 2 10 8 23 21 25 27 29 26 24 22 30 28 13 11 15 17 19 16 14 12 20 18 33 31 35 37 39 36 34 32 38
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 28 28 28 28 89 88 8b 8a 8d 8c 8f 8e 81 80 83 82 85 84 87 86 99 98 9b 9a 9d 9c 9f 9e 91 90 93 92 95 94 97 96 a9 a8 ab aa ad ac af ae 00000187 000001f6 000000e2 000000a3 0000008f 00000019 00000104 0000011f 0000001f 000000c2 00000076 000000c6 000001ea 00000114 ...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 28 28 28 28 89 88 8b 8a 8d 8c 8f 8e 81 80 83 82 85 84 87 86 99 98 9b 9a 9d 9c 9f 9e 91 90 93 92 95 94 97 96 a9 a8 ab aa ad ac af ae 00000187 000001f6 000000e2 000000a3 0000008f 00000019 00000104 0000011f 0000001f 000000c2 00000076 000000c6 000001ea 00000114 ...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
ok Correct, m = 5
Test #2:
score: 5
Accepted
time: 1244ms = 1244ms + 0ms
memory: 5768kb,3900kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 1 2 40 7 6 9 4 2 1 5 7 40 10 6 9 4 2 0 1 5 7 3 8
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 7 6 4 2 8f 80 8d 8b 88 8c 8e 000001f4 000000b6 0000008c 000000f2 00000109 00000018 000290d3 00006d8b 00000a94 0000d4fd 88 89 a 9 7 5 8f 80 8d 8b 89 88 8c 8e 8a 81 000001f4 000000b6 0000008c 000000fc 00000187 00000109 00000018 00000118 000000b8 000290d3 ...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 7 6 4 2 8f 80 8d 8b 88 8c 8e 000001f4 000000b6 0000008c 000000f2 00000109 00000018 000290d3 00006d8b 00000a94 0000d4fd 88 89 a 9 7 5 8f 80 8d 8b 89 88 8c 8e 8a 81 000001f4 000000b6 0000008c 000000fc 00000187 00000109 00000018 00000118 000000b8 000290d3 ...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
ok Correct, m = 5
Test #3:
score: 5
Accepted
time: 1620ms = 1618ms + 2ms
memory: 1960kb,5508kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 1 25000 40 40 12 4 16 7 26 21 10 20 0 32 15 3 33 37 23 8 34 38 13 1 29 18 17 25 39 35 31 24 36 28 30 9 14 5 19 22 2 27 11 6 40 40 3 34 21 38 36 7 33 39 26 15 2 13 22 20 5 25 10 12 30 35 0 31 24 17 11 37 32 18 9 28 6 16 23 27 1 4 8 14 19 29 40 40 18 34 29 31 22 3...
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 25000 28 28 28 28 85 8d 99 8e 93 9c 83 9d 89 a9 86 8a a8 ac 9e 81 ab af 84 88 94 9b 98 90 ae aa 96 91 ad 95 97 80 87 8c 9a 9f 8b 92 82 8f 000001d9 00000089 0000009a 00000129 000001f0 00000139 00000188 000000fc 00000077 000000b9 00000009 000000be 00000191 00000...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 25000 28 28 28 28 85 8d 99 8e 93 9c 83 9d 89 a9 86 8a a8 ac 9e 81 ab af 84 88 94 9b 98 90 ae aa 96 91 ad 95 97 80 87 8c 9a 9f 8b 92 82 8f 000001d9 00000089 0000009a 00000129 000001f0 00000139 00000188 000000fc 00000077 000000b9 00000009 000000be 00000191 00000...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
ok Correct, m = 5
Test #4:
score: 5
Accepted
time: 1168ms = 1167ms + 1ms
memory: 5444kb,4052kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 1 2 10 7 6 9 4 2 1 5 7 10 10 6 9 4 2 0 1 5 7 3 8
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 7 6 4 2 8f 80 8d 8b 88 8c 8e 000001f4 000000b6 0000008c 000000f2 00000109 00000018 000290d3 00006d8b 00000a94 0000d4fd 88 89 a a a a 8f 80 8d 8b 89 88 8c 8e 8a 81 000001f4 000000b6 0000008c 000000fc 00000187 00000109 00000018 00000118 000000b8 0000002c ...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 7 6 4 2 8f 80 8d 8b 88 8c 8e 000001f4 000000b6 0000008c 000000f2 00000109 00000018 000290d3 00006d8b 00000a94 0000d4fd 88 89 a a a a 8f 80 8d 8b 89 88 8c 8e 8a 81 000001f4 000000b6 0000008c 000000fc 00000187 00000109 00000018 00000118 000000b8 0000002c ...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
ok Correct, m = 5
Test #5:
score: 5
Accepted
time: 1745ms = 1743ms + 2ms
memory: 10652kb,5380kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 1 100000 10 10 4 8 3 7 1 0 2 5 6 9 10 10 3 7 9 4 5 6 0 1 8 2 10 10 9 3 6 1 0 4 2 7 8 5 10 10 2 8 6 3 1 5 0 4 9 7 10 10 1 7 5 3 4 0 6 9 8 2 10 10 2 1 0 7 5 9 3 6 4 8 10 10 5 2 9 3 6 0 1 7 8 4 10 10 3 6 8 2 1 5 9 7 4 0 10 10 6 4 2 8 3 0 7 1 9 5 10 10 9 2 6 0 4 7 1...
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 100000 a a a a 8d 81 8a 8e 88 89 8b 8c 8f 80 0000008e 0000001c 000000b4 00000128 0000010f 00000188 000000e6 00000019 000001f4 000000b6 00000cc5 000102c7 00006a12 0002cfd3 0002a0cc 0001bbc0 0000c03d 0000f8c6 000290d5 00006d95 89 8b 88 8b 88 8b 8d 8a 8d 8b a ...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 100000 a a a a 8d 81 8a 8e 88 89 8b 8c 8f 80 0000008e 0000001c 000000b4 00000128 0000010f 00000188 000000e6 00000019 000001f4 000000b6 00000cc5 000102c7 00006a12 0002cfd3 0002a0cc 0001bbc0 0000c03d 0000f8c6 000290d5 00006d95 89 8b 88 8b 88 8b 8d 8a 8d 8b a ...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
ok Correct, m = 5
Test #6:
score: 5
Accepted
time: 1759ms = 1757ms + 2ms
memory: 11064kb,5404kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 1 128929 10 10 4 8 3 7 1 0 2 5 6 9 10 9 8 0 6 7 5 2 4 3 1 10 8 5 9 3 8 2 6 7 1 10 10 0 1 4 5 7 2 9 8 6 3 10 7 1 3 5 0 2 4 8 10 7 2 4 7 6 1 9 0 10 9 5 9 6 3 1 4 7 0 8 10 9 1 5 4 6 8 0 9 2 3 10 7 7 4 6 9 2 8 0 10 10 8 4 6 5 0 9 2 3 1 7 10 9 0 9 6 4 2 3 1 8 7 10 10...
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 128929 a a a a 8d 81 8a 8e 88 89 8b 8c 8f 80 0000008e 0000001c 000000b4 00000128 0000010f 00000188 000000e6 00000019 000001f4 000000b6 00000cc5 000102c7 00006a12 0002cfd3 0002a0cc 0001bbc0 0000c03d 0000f8c6 000290d5 00006d95 89 8b 88 8b 88 8b 8d 8a 8d 8b 9 ...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 128929 a a a a 8d 81 8a 8e 88 89 8b 8c 8f 80 0000008e 0000001c 000000b4 00000128 0000010f 00000188 000000e6 00000019 000001f4 000000b6 00000cc5 000102c7 00006a12 0002cfd3 0002a0cc 0001bbc0 0000c03d 0000f8c6 000290d5 00006d95 89 8b 88 8b 88 8b 8d 8a 8d 8b 9 ...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
ok Correct, m = 5
Test #7:
score: 5
Accepted
time: 2052ms = 2050ms + 2ms
memory: 3724kb,5344kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 1 44333 40 40 12 4 16 7 26 21 10 20 0 32 15 3 33 37 23 8 34 38 13 1 29 18 17 25 39 35 31 24 36 28 30 9 14 5 19 22 2 27 11 6 40 31 10 24 13 28 30 27 31 29 20 37 34 35 19 36 25 12 21 9 0 32 22 26 4 38 3 17 2 23 33 16 15 40 23 6 8 19 2 3 24 25 7 23 12 0 13 31 17 39...
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 44333 28 28 28 28 85 8d 99 8e 93 9c 83 9d 89 a9 86 8a a8 ac 9e 81 ab af 84 88 94 9b 98 90 ae aa 96 91 ad 95 97 80 87 8c 9a 9f 8b 92 82 8f 000001d9 00000089 0000009a 00000129 000001f0 00000139 00000188 000000fc 00000077 000000b9 00000009 000000be 00000191 00000...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 44333 28 28 28 28 85 8d 99 8e 93 9c 83 9d 89 a9 86 8a a8 ac 9e 81 ab af 84 88 94 9b 98 90 ae aa 96 91 ad 95 97 80 87 8c 9a 9f 8b 92 82 8f 000001d9 00000089 0000009a 00000129 000001f0 00000139 00000188 000000fc 00000077 000000b9 00000009 000000be 00000191 00000...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
ok Correct, m = 5
Subtask #2:
score: 0
Wrong Answer
Test #8:
score: 64
Acceptable Answer
time: 1239ms = 1238ms + 1ms
memory: 7368kb,4316kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 2 2 40 40 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 40 0 3 1 5 7 9 6 4 2 10 8 23 21 25 27 29 26 24 22 30 28 13 11 15 17 19 16 14 12 20 18 33 31 35 37 39 36 34 32 38
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 28 28 28 28 89 88 8b 8a 8d 8c 8f 8e 81 80 83 82 85 84 87 86 99 98 9b 9a 9d 9c 9f 9e 91 90 93 92 95 94 97 96 a9 a8 ab aa ad ac af ae 00000187 000001f6 000000e2 000000a3 0000008f 00000019 00000104 0000011f 0000001f 000000c2 00000076 000000c6 000001ea 00000114 ...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 28 28 28 28 89 88 8b 8a 8d 8c 8f 8e 81 80 83 82 85 84 87 86 99 98 9b 9a 9d 9c 9f 9e 91 90 93 92 95 94 97 96 a9 a8 ab aa ad ac af ae 00000187 000001f6 000000e2 000000a3 0000008f 00000019 00000104 0000011f 0000001f 000000c2 00000076 000000c6 000001ea 00000114 ...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
points 0.67368421050 Incorrect, m = 5
Test #9:
score: 64
Acceptable Answer
time: 1446ms = 1445ms + 1ms
memory: 5508kb,4064kb
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 2 2 40 7 6 9 4 2 1 5 7 40 10 6 9 4 2 0 1 5 7 3 8
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 7 6 4 2 8f 80 8d 8b 88 8c 8e 000001f4 000000b6 0000008c 000000f2 00000109 00000018 000290d3 00006d8b 00000a94 0000d4fd 88 89 a 9 7 5 8f 80 8d 8b 89 88 8c 8e 8a 81 000001f4 000000b6 0000008c 000000fc 00000187 00000109 00000018 00000118 000000b8 000290d3 ...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 2 7 6 4 2 8f 80 8d 8b 88 8c 8e 000001f4 000000b6 0000008c 000000f2 00000109 00000018 000290d3 00006d8b 00000a94 0000d4fd 88 89 a 9 7 5 8f 80 8d 8b 89 88 8c 8e 8a 81 000001f4 000000b6 0000008c 000000fc 00000187 00000109 00000018 00000118 000000b8 000290d3 ...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
points 0.67368421050 Incorrect, m = 5
Test #10:
score: 64
Acceptable Answer
time: 1721ms = 1719ms + 2ms
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 2 25000 40 40 8 20 9 10 28 26 23 38 21 15 0 12 24 5 17 33 19 27 16 35 36 1 13 39 6 25 2 7 22 3 32 29 14 31 34 30 18 4 37 11 40 40 22 39 8 4 38 5 24 12 20 33 15 37 28 0 19 36 13 26 25 34 27 35 14 16 18 10 3 7 23 29 9 31 1 30 17 2 21 32 11 6 40 40 23 7 33 4 16 15 ...
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 25000 28 28 28 28 81 9d 80 83 95 93 9e af 9c 86 89 85 91 8c 98 a8 9a 92 99 aa ad 88 84 ae 8f 90 8b 8e 9f 8a a9 94 87 96 ab 97 9b 8d ac 82 00000011 000000e5 000000c2 00000184 000001ff 000001e2 00000000 00000072 00000123 00000003 00000185 000001d9 0000008f 00000...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 25000 28 28 28 28 81 9d 80 83 95 93 9e af 9c 86 89 85 91 8c 98 a8 9a 92 99 aa ad 88 84 ae 8f 90 8b 8e 9f 8a a9 94 87 96 ab 97 9b 8d ac 82 00000011 000000e5 000000c2 00000184 000001ff 000001e2 00000000 00000072 00000123 00000003 00000185 000001d9 0000008f 00000...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
points 0.67368421050 Incorrect, m = 5
Test #11:
score: 64
Acceptable Answer
time: 1563ms = 1562ms + 1ms
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 2 10 100000 100000 30835 54902 6031 39780 48892 41112 10655 59793 82131 11690 46738 17357 71191 42943 59375 29187 13113 60681 52635 78884 28768 26173 64156 46178 687 70180 721 91640 72042 76284 56999 69796 75841 24470 47874 87966 9206 57028 69773 82741 61206 949...
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 10 186a0 186a0 186a0 186a0 78fa d6ff 1706 9bed be75 a011 2916 e918 1405a 2d23 b61b 4344 1169e a736 e766 728a 33b0 ed80 cd12 134ad 70e9 66b4 fa15 b4eb 226 112ad 258 16571 119e3 12975 de2e 1102d 128c8 5f1f bb8b 15717 237f de4d 11004 143bc ef9f 17246 1f98 fd83 c18...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 10 186a0 186a0 186a0 186a0 78fa d6ff 1706 9bed be75 a011 2916 e918 1405a 2d23 b61b 4344 1169e a736 e766 728a 33b0 ed80 cd12 134ad 70e9 66b4 fa15 b4eb 226 112ad 258 16571 119e3 12975 de2e 1102d 128c8 5f1f bb8b 15717 237f de4d 11004 143bc ef9f 17246 1f98 fd83 c18...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
points 0.67368421050 Incorrect, m = 5
Test #12:
score: 64
Acceptable Answer
time: 1681ms = 1679ms + 2ms
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 2 10 100000 100000 88851 25433 51845 79408 40941 31163 60757 55069 34140 32190 44722 40747 23732 89836 86611 47711 49975 64281 70439 65875 65902 25801 91559 8426 44823 22054 75184 91728 47315 77067 63066 33263 75407 10551 63423 80478 61597 55593 78421 20453 5047...
output:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 10 186a0 186a0 186a0 186a0 15b9a 63d0 ca0c 136b9 9f64 7932 eddc d794 85d5 7d37 ae3b 9fa2 5c3d 15e65 152da bad6 c3be fb90 113ae 101da 101e7 6440 1652e 2063 af9e 56af 12539 166d9 b85a 12d82 f6d3 8166 12606 29be f736 13ad7 f014 d9a0 132dc 4f6c c5a3 688a d24d 10c9f...
input:
dd180566-1d37-PIPE-b85d-c176ae85727d 5 10 186a0 186a0 186a0 186a0 15b9a 63d0 ca0c 136b9 9f64 7932 eddc d794 85d5 7d37 ae3b 9fa2 5c3d 15e65 152da bad6 c3be fb90 113ae 101da 101e7 6440 1652e 2063 af9e 56af 12539 166d9 b85a 12d82 f6d3 8166 12606 29be f736 13ad7 f014 d9a0 132dc 4f6c c5a3 688a d24d 10c9f...
output:
4468cc07-dabe-OUTPUT-ba95-7ddd49645c94 5
result:
points 0.67368421050 Incorrect, m = 5
Test #13:
score: 0
Wrong Answer
time: 1435ms = 1434ms + 1ms
input:
2dc2b1d4-8de2-INPUT-bcd3-aa55b691fdb3 2 10 100000 100000 93904 42512 36692 28091 63857 16127 84174 11185 57922 75025 11139 92714 25644 3297 24200 90563 66712 37532 28484 95352 54655 58328 5708 19794 10394 6627 4990 91948 20596 98516 84901 83661 40392 11203 73298 45024 59155 92781 52782 10324 56104 1...
output:
64be09ab-d709-ERROR-82bc-c23f6124dd26 Wrong Answer [4]
input:
64be09ab-d709-ERROR-82bc-c23f6124dd26 Wrong Answer [4]
output:
64be09ab-d709-ERROR-82bc-c23f6124dd26 Wrong Answer [4]
result:
wrong answer Wrong Answer [4]