Submission #201429


Source Code Expand

#include <set>
#include <map>
#include <list>
#include <queue>
#include <stack>
#include <cmath>
#include <ctime>
#include <cstdio>
#include <vector>
#include <string>
#include <bitset>
#include <cctype>
#include <cstdlib>
#include <cstring>
#include <utility>
#include <numeric>
#include <complex>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <cassert>
#include <iostream>
#include <iterator>
#include <algorithm>
using namespace std;
typedef long long ll;
const double EPS = 1e-9;
typedef vector<int> vint;
typedef pair<int, int> pint;
typedef vector<vector<int> > mat;
#define rep(i, n) REP(i, 0, n)
#define ALL(v) v.begin(), v.end()
#define MSG(a) cout << #a << " " << a << endl;
#define REP(i, x, n) for(int i = x; i < n; i++)
#define pb push_back
#define mp make_pair
#define INF 1e+9


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

Submission Info

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