mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 14:10:39 +00:00
[Add] solved solutions
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
ios_base::sync_with_stdio(false);
|
||||
cin.tie(NULL);
|
||||
unsigned long n, k, i, count = 0;
|
||||
unsigned long long a;
|
||||
cin >> n >> k;
|
||||
for (i = 0; i < n; i++)
|
||||
{
|
||||
cin >> a;
|
||||
if (a%k == 0)
|
||||
{
|
||||
count++;
|
||||
}
|
||||
}
|
||||
cout << count << endl;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user