1 条题解

  • 0
    @ 2025-11-22 12:02:53

    #include<bits/stdc++.h> using namespace std; int main(){ int h,m,s,x; cin>>h>>m>>s>>x; s+=x; m+=s/60; s%=60; h+=m/60; m%=60; cout<<h<<" "<<m<<" "<<s; return 0; }

    信息

    ID
    5179
    时间
    1000ms
    内存
    256MiB
    难度
    8
    标签
    递交数
    62
    已通过
    12
    上传者