QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#418761 | #6652. 着色 | LinkWish# | AC ✓ | 12ms | 3584kb | C++14 | 788b | 2024-05-23 15:36:41 | 2024-05-23 15:36:41 |
Judging History
answer
//Linkwish's code
#include<bits/stdc++.h>
#define endl '\n'
#define si static inline
#define mp make_pair
#define fi first
#define se second
using namespace std;typedef long long ll;typedef __int128 li;
typedef pair<int,int> pii;typedef pair<ll,ll> pll;typedef const int ci;
typedef const ll cl;const int iinf=INT_MAX;const ll linf=LLONG_MAX;
template<typename T>si bool gmax(T &x,const T y){if(x<y)return x=y,1;return 0;}
template<typename T>si bool gmin(T &x,const T y){if(y<x)return x=y,1;return 0;}
namespace LinkWish{
void mian(){
int n;
cin>>n;
for(int i=0;i<n;++i){
for(int j=i+1;j<n;++j)cout<<9-__builtin_ctz(i^j);
cout<<"\n";
}
}
}
signed main(){
ios::sync_with_stdio(0);
cin.tie(0),cout.tie(0);
LinkWish::mian();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3528kb
input:
2
output:
9
result:
ok Accepted.
Test #2:
score: 0
Accepted
time: 12ms
memory: 3544kb
input:
1000
output:
989798969897989598979896989798949897989698979895989798969897989398979896989798959897989698979894989798969897989598979896989798929897989698979895989798969897989498979896989798959897989698979893989798969897989598979896989798949897989698979895989798969897989198979896989798959897989698979894989798969897...
result:
ok Accepted.
Test #3:
score: 0
Accepted
time: 12ms
memory: 3584kb
input:
988
output:
989798969897989598979896989798949897989698979895989798969897989398979896989798959897989698979894989798969897989598979896989798929897989698979895989798969897989498979896989798959897989698979893989798969897989598979896989798949897989698979895989798969897989198979896989798959897989698979894989798969897...
result:
ok Accepted.
Test #4:
score: 0
Accepted
time: 1ms
memory: 3564kb
input:
104
output:
9897989698979895989798969897989498979896989798959897989698979893989798969897989598979896989798949897989 989798969897989598979896989798949897989698979895989798969897989398979896989798959897989698979894989798 989798969897989598979896989798949897989698979895989798969897989398979896989798959897989698979...
result:
ok Accepted.
Test #5:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
7
output:
989798 98979 9897 989 98 9
result:
ok Accepted.
Test #6:
score: 0
Accepted
time: 0ms
memory: 3480kb
input:
59
output:
9897989698979895989798969897989498979896989798959897989698 989798969897989598979896989798949897989698979895989798969 98979896989798959897989698979894989798969897989598979896 9897989698979895989798969897989498979896989798959897989 989798969897989598979896989798949897989698979895989798 989798969897989...
result:
ok Accepted.