1 条题解

  • 1
    @ 2023-5-27 8:58:12
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    	int n;
    	cin>>n;
    	int a,c,d,f;
    	char b,e;
    	cin>>a>>b>>c>>d>>e>>f;
    	int sum_time=f-c+(d-a)*60;
    	int sum_day=n/sum_time;
    	if(sum_time*sum_day<n)sum_day++;
    	cout<<sum_day;
    	return 0;
    }
    
    • 1

    信息

    ID
    309
    时间
    1000ms
    内存
    16MiB
    难度
    6
    标签
    递交数
    17
    已通过
    10
    上传者