5 条题解

  • 1
    @ 2025-3-21 17:20:35

    #include <bits/stdc++.h> using namespace std; int main(){ int k,h,l,f,v; cin>>k>>h>>l>>f; v=(l-k)*60+(f-h); cout<<v; return 0; }

    • 0
      @ 2025-3-2 10:13:51

      #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; cout<<(c60+d)-(a60+b); return 0; }

      • -1
        @ 2025-3-2 10:00:46

        #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>a>>b>>c>>d; e=(c60+d)-(a60+b); cout<<e; return 0; } }

        • -4
          @ 2025-3-4 17:38:14
          #include<bits/stdc++.h>
          using namespace std;
          int main(){
          	int a,b,c,d;
          	cin>>a;
          	cin>>b;
          	cin>>c;
          	cin>>d;
          	cout<<(c*60+d)-(a*60+b);
          	return 0;
          }
          
          
          • -4
            @ 2024-7-29 10:54:57

            #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>a>>b>>c>>d; e=(c60+d)-(a60+b); cout<<e; return 0; }

            • 1

            信息

            ID
            2201
            时间
            1000ms
            内存
            256MiB
            难度
            1
            标签
            递交数
            459
            已通过
            275
            上传者