Submission #201176


Source Code Expand

#include <cstdlib>
#include <cmath>
#include <climits>
#include <cfloat>
#include <map>
#include <utility>
#include <set>
#include <iostream>
#include <memory>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <sstream>
#include <deque>
#include <complex>
#include <stack>
#include <queue>
#include <cstdio>
#include <cctype>
#include <cstring>
#include <ctime>
#include <iterator>
#include <bitset>
#include <numeric>
#include <list>
#include <iomanip>

#if __cplusplus >= 201103L
#include <array>
#include <tuple>
#include <initializer_list>
#include <unordered_set>
#include <unordered_map>
#include <forward_list>

#define cauto const auto&
#endif

using namespace std;


typedef long long LL;
typedef pair<int,int> pii;
typedef pair<LL,LL> pll;

typedef vector<int> vint;
typedef vector<vector<int> > vvint;
typedef vector<long long> vll, vLL;
typedef vector<vector<long long> > vvll, vvLL;

#define VV(T) vector<vector< T > >

template <class T>
void initvv(vector<vector<T> > &v, int a, int b, const T &t = T()){
	v.assign(a, vector<T>(b, t));
}

template <class F, class T>
void convert(const F &f, T &t){
	stringstream ss;
	ss << f;
	ss >> t;
}


#define REP(i,n) for(int i=0;i<int(n);++i)
#define ALL(v) (v).begin(),(v).end()
#define RALL(v) (v).rbegin(),(v).rend()
#define PB push_back


#define MOD 1000000007LL
#define EPS 1e-8



int main(){
	int n;
	cin >> n;
	printf("%02d:%02d:%02d\n", n / 3600, n / 60 % 60, n % 60);
	
}

Submission Info

Submission Time
Task B - 入浴時間
User climpet
Language C++ (G++ 4.6.4)
Score 100
Code Size 1560 Byte
Status AC
Exec Time 22 ms
Memory 928 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 21 ms 796 KB
sample_02.txt AC 21 ms 672 KB
test_1.txt AC 20 ms 796 KB
test_17977.txt AC 22 ms 924 KB
test_25298.txt AC 21 ms 920 KB
test_36922.txt AC 21 ms 792 KB
test_44309.txt AC 21 ms 800 KB
test_52415.txt AC 21 ms 928 KB
test_60165.txt AC 22 ms 800 KB
test_65487.txt AC 21 ms 916 KB
test_70993.txt AC 22 ms 676 KB
test_80915.txt AC 20 ms 800 KB
test_84810.txt AC 22 ms 676 KB
test_86399.txt AC 22 ms 796 KB