29 条题解

  • -1
    @ 2025-2-19 13:42:20

    #include using namespace std; int main(){ int a,b,c,d,t; cin>>a>>b>>c>>d; t= (c60+d)-(a60+b); cout<<t/60<<" "<<t%60; return 0; }

    • -1
      @ 2025-2-19 13:35:23

      #include using namespace std; int main(){ int a,b,c,d,e,f,g; cin>>a>>b>>c>>d; g=(c60+d)-(a60+b); e=g/60; f=g%60; cout<<e<<" "<<g%60; return 0; }

      • -1
        @ 2024-10-12 23:18:59

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

        • -1
          @ 2024-7-16 10:42:54

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

          • -1
            @ 2024-2-22 18:55:28

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

            • -1
              @ 2024-2-22 11:17:28

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

              • -1
                @ 2024-2-22 10:41:33

                #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,j; cin>>a>>b>>c>>d; e=60c+d-60a-b; f=e/60; j=e%60; cout<<f<<" "<<j; }

                • -1
                  @ 2024-2-22 10:27:01

                  👍 👍 👍 👍 👍 `` #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e,f,x; cin>>a>>b>>c>>d; x=60c+d-60a-b; e=x/60; f=x-60*e; cout<<e<<" "<<f; return 0;

                  • -1
                    @ 2024-2-22 10:14:34
                    #include<bits/stdc++.h>
                    using namespace std;
                    int main(){
                        int a,b,c,d,e,f,x;
                        cin>>a>>b>>c>>d;
                        x=60*c+d-60*a-b;
                        e=x/60;
                        f=x-60*e;
                        cout<<e<<" "<<f;
                    	return 0;
                    }
                    

                    信息

                    ID
                    612
                    时间
                    1000ms
                    内存
                    125MiB
                    难度
                    4
                    标签
                    递交数
                    1021
                    已通过
                    499
                    上传者