A. Insomnia cure
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
?One dragon. Two dragon. Three dragon?, — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine.
However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and she was fighting them off. Every k-th dragon got punched in the face with a frying pan. Every l-th dragon got his tail shut into the balcony door. Every m-th dragon got his paws trampled with sharp heels. Finally, she threatened every n-th dragon to call her mom, and he withdrew in panic.
How many imaginary dragons suffered moral or physical damage tonight, if the princess counted a total of d dragons?
Input
Input data contains integer numbers k,?l,?m,?n and d, each number in a separate line (1?≤?k,?l,?m,?n?≤?10, 1?≤?d?≤?10^5).
Output
Output the number of damaged dragons.
Examples
input
1
2
3
4
12
output
12
input
2
3
4
5
24
output
17
My Answer Code:
/*
Author:Albert Tesla Wizard
Time:2020/12/5 23:42
*/
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int k,l,m,n,d;
cin>>k>>l>>m>>n>>d;
int ans=0;
for(int i=1;i<=d;i++)
{
if(i%k==0||i%l==0||i%m==0||i%n==0)ans++;
}
cout<<ans<<'\n';
return 0;
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/231024.html
標籤:其他
上一篇:相比于原生的Android彈出框,最新版QMUI的彈出框更加漂亮美觀,QMUI的配置與彈出框的實作?
下一篇:axios的具體使用、跨域問題
