Submission #935620


Source Code Expand

#include<iostream>
#include<string>
#include<cstdio>
#include<algorithm>
#include<stack>
#include<queue>
#include<vector>
#include<cmath>
#include<utility>
#include<set>
#include<complex>
#define vi vector<int>
#define vvi vector<vector<int> >
#define ll long long int
#define ld long double
#define INF 1e+8
#define EPS 0.0000000001
#define rep(i,n) for(int i=0;i<n;i++)
#define CC puts("-------ok--------");
#define all(in) in.begin(), in.end()
using namespace std;
typedef pair<int, int>PA;
using namespace std;

int main(){
    int t; cin >> t;
    int h = t /3600;
    t-=h*3600;
    int m = t/60; t-=m*60;
    printf("%02d:%02d:%02d\n",h,m,t);
    return 0;
}

Submission Info

Submission Time
Task B - 入浴時間
User yebityon
Language C++ (G++ 4.6.4)
Score 100
Code Size 696 Byte
Status AC
Exec Time 20 ms
Memory 924 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 12
Set Name Test Cases
All test_1.txt, test_17977.txt, test_25298.txt, test_36922.txt, test_44309.txt, test_52415.txt, test_60165.txt, test_65487.txt, test_70993.txt, test_80915.txt, test_84810.txt, test_86399.txt
Case Name Status Exec Time Memory
sample_01.txt AC 20 ms 916 KB
sample_02.txt AC 19 ms 796 KB
test_1.txt AC 19 ms 924 KB
test_17977.txt AC 19 ms 796 KB
test_25298.txt AC 19 ms 788 KB
test_36922.txt AC 17 ms 916 KB
test_44309.txt AC 19 ms 916 KB
test_52415.txt AC 19 ms 864 KB
test_60165.txt AC 19 ms 916 KB
test_65487.txt AC 20 ms 840 KB
test_70993.txt AC 19 ms 796 KB
test_80915.txt AC 19 ms 792 KB
test_84810.txt AC 19 ms 920 KB
test_86399.txt AC 19 ms 788 KB