Submission #7055186


Source Code Expand

#include <iostream>
#include <cstdlib>
#include <algorithm>
#include <vector>
#include <string>
#include <cmath>
#include <cassert>
#include <functional>
#include <string>
#include <sstream>
#include <cctype>
#include <queue>
#include <stack>
#include <map>
#include <iomanip>
using namespace std;

/////////////////////////////////////////////////////////

void Main(){
  int N; cin >> N;
  int h, m, s;
  h = N / 3600;
  N %= 3600;
  m = N / 60;
  N %= 60;
  s = N;
  cout << setw(2) << setfill('0') << h << ":" << setw(2) << setfill('0') << m << ":" << setw(2) << setfill('0') << s << endl;
}

/////////////////////////////////////////////////////////

int main(){
  cin.tie(nullptr);
  ios_base::sync_with_stdio(false);
  //cout << std::fixed << std::setprecision(15);

  Main();
}

Submission Info

Submission Time
Task B - 入浴時間
User takeheroaf
Language C++14 (GCC 5.4.1)
Score 100
Code Size 825 Byte
Status AC
Exec Time 1 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 14
Set Name Test Cases
All sample_01.txt, sample_02.txt, 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 1 ms 256 KB
sample_02.txt AC 1 ms 256 KB
test_1.txt AC 1 ms 256 KB
test_17977.txt AC 1 ms 256 KB
test_25298.txt AC 1 ms 256 KB
test_36922.txt AC 1 ms 256 KB
test_44309.txt AC 1 ms 256 KB
test_52415.txt AC 1 ms 256 KB
test_60165.txt AC 1 ms 256 KB
test_65487.txt AC 1 ms 256 KB
test_70993.txt AC 1 ms 256 KB
test_80915.txt AC 1 ms 256 KB
test_84810.txt AC 1 ms 256 KB
test_86399.txt AC 1 ms 256 KB