Tìm số (THTA Lâm Đồng 2022)

thiennhansu

tôi bấm nhầm xin lỗi nha nguyên

...More

Parallel 2 (DHBB 2021 T.Thử)

nguyen_pham_truong_sa

n = int(input())

for _ in range(n):
i, f = map(int, input().split())
if (i <= 1 and f <= 2) or (i <= 2 and f <= 1):
print("Yes")
else:
print("No")

...More

Mã hóa tin nhắn

ducphong

bạn đọc kĩ lại đi

...More

Em trang trí

minhskibidi

đưa xuống một li
sang trái một tí
căn những tròn vuông
sao cho vừa ý

...More

Mã hóa tin nhắn

thuytien2013

Bạn giải thích test ví dụ cho mình được không ạ, mình chưa hiểu lắm

...More

Số nguyên tố

Hoang_The_An

Cái test bị sai mà, 6 sao là snt đc

...More

Ước số của n

leminhduc

include<bits/stdc++.h>

define ll long long

define ld long double

define f(i, a, b) for(ll i=(a); i<=(b); ++i)

using namespace std;
int main (){
cin.tie(nullptr)->sync_with_stdio(false);
ll n;
vector<ll> a;
cin >> n;
f(i, 1, sqrt(n)){
if(n%i==0){
a.push_back(i);
if(n/i!=i) a.push_back(n/i);
}
}
sort(a.begin(), a.end());
for(auto i:a) cout << i << " ";
return 0;
}

...More

Dãy con tăng liên tiếp dài nahát

huytvgFX13213

0 < a[i] mà trong test lại có -1 ảo thật đấy =)))))

...More

Xóa chữ số

ducanhkingofcoder

Code SEGG

nhin cc

include<bits/stdc++.h>

using namespace std;

int main()
{
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
string s; int k,i,j,tmp,d=0;
cin>>s>>k;
int n = s.size();
char a[n+1];
int top = 0;
for(int i=0;i<n;i++) { while (top>0 && k>0 && a[top-1]<s[i]) top--,k--;
a[top++] = s[i];
}
while (k--) top--;
for(int i=0;i<top;i++) cout<<a[i];
}

...More

Xóa chữ số

ducanhkingofcoder

include<bits/stdc++.h>

using namespace std;

int main()
{
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
string s; int k,i,j,tmp,d=0;
cin>>s>>k;
int n = s.size();
char a[n+1];
int top = 0;
for(int i=0;i<n;i++) { while (top>0 && k>0 && a[top-1]<s[i]) top--,k--;
a[top++] = s[i];
}
while (k--) top--;
for(int i=0;i<top;i++) cout<<a[i];
}

...More

Xóa chữ số

ducanhkingofcoder

code nhé ae

include<bits/stdc++.h>

using namespace std;

int main()
{
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
string s; int k,i,j,tmp,d=0;
cin>>s>>k;
int n = s.size();
char a[n+1];
int top = 0;
for(int i=0;i<n;i++) { while (top>0 && k>0 && a[top-1]<s[i]) top--,k--;
a[top++] = s[i];
}
while (k--) top--;
for(int i=0;i<top;i++) cout<<a[i];
//chu code dz vlxx
}

...More

Cây thông (Contest ôn tập #02 THTA 2023)

thanh_nhan_123

n=int(input())
sodau=n+n+1
socuoi=(n*(n+1))
print(sodau+socuoi)

...More