HM
Xem chi tiết
HP
Xem chi tiết
KT
Xem chi tiết
H24
Xem chi tiết
NT
15 tháng 12 2022 lúc 15:37

#include <bits/stdc++.h>

using namespace std;

int n,s,i,t;

int main()

{

freopen("bai1.inp","r",stdin);

freopen("bai1.out","w",stdout);

cin>>n>>s;

t=0;

for (int i=1; i<=n; i++)

{

int x;

cin>>x;

if (x%s==0) t+=x;

}

cout<<t;

}

Bình luận (0)
NT
Xem chi tiết
H24
Xem chi tiết
#include <bits/stdc++.h>#define TASKNAME ""#define ll long long #define ull unsigned long longusing namespace std;ull n;int main(){    ios_base::sync_with_stdio(false);    cin.tie(NULL);cout.tie(NULL);    if ( fopen( TASKNAME".inp", "r" ) ) {    freopen (TASKNAME".inp", "r", stdin);    freopen (TASKNAME".out", "w", stdout);    }cin>>n;cout<<n*(n+1)/2<<"\n"<<((n%2==0)?"n : la so chan":"n la so le");return 0;}
Bình luận (0)

Bình luận (0)
TY
Xem chi tiết
AT
Xem chi tiết
HD
Xem chi tiết
PT
Xem chi tiết
DL
Xem chi tiết