ZJY1207 @ 2024-07-17 14:11:46
为什么最后三个测试点过不去,大佬们帮帮忙。
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,d=480;
cin>>a>>b;
int c=ceil(a*1.0/b)+10;
d-=c;
cout<<setw(2)<<setfill('0')<<d/60;
cout<<":";
cout<<setw(2)<<setfill('0')<<d%60;
}