mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 14:11:38 +00:00
[Init] Solved solutions
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int k, l, m, n, d, count = 0;
|
||||
cin >> k >> l >> m >> n >> d;
|
||||
for (int i = 1; i <= d; i++)
|
||||
{
|
||||
if ((i%k == 0) || (i%l == 0) || (i%m == 0) || (i%n == 0))
|
||||
{
|
||||
count++;
|
||||
}
|
||||
}
|
||||
cout << count;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user