codeforces A. Three swimmers

A. Three swimmers

time limit per test1 second
memory limit per test512 megabytes
inputstandard input
outputstandard output
Three swimmers decided to organize a party in the swimming pool! At noon, they started to swim from the left side of the pool.

It takes the first swimmer exactly a minutes to swim across the entire pool and come back, exactly b minutes for the second swimmer and c minutes for the third. Hence, the first swimmer will be on the left side of the pool after 0, a, 2a, 3a, … minutes after the start time, the second one will be at 0, b, 2b, 3b, … minutes, and the third one will be on the left side of the pool after 0, c, 2c, 3c, … minutes.

You came to the left side of the pool exactly p minutes after they started swimming. Determine how long you have to wait before one of the swimmers arrives at the left side of the pool.

Input
The first line of the input contains a single integer t (1≤t≤1000) — the number of test cases. Next t lines contains test case descriptions, one per line.

Each line contains four integers p, a, b and c (1≤p,a,b,c≤1018), time in minutes after the start, when you came to the pool and times in minutes it take the swimmers to cross the entire pool and come back.

Output
For each test case, output one integer — how long you have to wait (in minutes) before one of the swimmers arrives at the left side of the pool.

题目大意

有三个游泳的人分别以a,b,c的往返时间在游泳,问当你于p分钟到达泳池时,还需要多久可以看到有人返回起点与你相遇

输入案例

4
9 5 4 8
2 6 10 9
10 2 5 10
10 9 9 9

输出案例

1
4
0
8

解题思路

你到达的时间和每个游泳者往返一周的时间取模,如果为0说明能够刚好遇上,否则得到的数就是游泳者本次往返已经游泳的时间,用往返一周的时间减去已经游泳的时间就可以得到还需多久才能返回起点,遍历三个人即可得到最小值

AC代码

#include <iostream>
using namespace std;
int main() {
	int  n;
	cin>>n;
	while(n--) {
		long long x,m=2e18;
		cin>>x;
		int cx=3;
		while(cx--) {
			long long t;//不开longlong见祖宗 
			cin>>t;
			long long p=x%t;
			if(p==0) m=0;//判定一下如果x%t=0说明刚好"你"到游泳池就能遇上他们 
			else m=min(m,t-p);
		}
		cout<<m<<endl;
	}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

zengyz-wh

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值