1 solutions

  • 0
    @ 2026-2-9 21:37:33

    #include<bits/stdc++.h> using namespace std; int main(){ int n; cin>>n; int m=n/3600; int x=n%3600; int y=x/60; int s=x%60; cout<<setw(2)<<setfill('0')<<m<<":"<<setw(2)<<setfill('0')<<y<<":"<<setw(2)<<setfill('0')<<s; return 0; }

    • 1

    Information

    ID
    1266
    Time
    1000ms
    Memory
    64MiB
    Difficulty
    10
    Tags
    # Submissions
    2
    Accepted
    1
    Uploaded By