2 条题解
-
1
202509cj108 (王宇浩) LV 7 @ 2025-12-22 20:04:54
#include <bits/stdc++.h>
using namespace std;
int main( )
{
int s,f,m,s1,f1,m1;
cin>>s>>f>>m>>s1>>f1>>m1;
m=m+s*3600+f*60;
m1=m1+s1*3600+f1*60;
cout<<m1-m;
return 0;
} -
0@ 2025-03-15 12:56:06
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int N,f,z=0,i=1;
cin>>N;
for(;i<=N;i++)
{
cin>>f;
if(f<60)
z++;
}
cout<<z;
return 0;
}//专坑双胞胎
- 1
信息
- ID
- 1108
- 难度
- 2
- 分类
- (无)
- 标签
- 递交数
- 53
- 已通过
- 30
- 通过率
- 57%
- 上传者