Submission #1938164


Source Code Expand

#include <algorithm>
#include <cmath>
#include <complex>
#include <iomanip>
#include <iostream>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <utility>
#include <vector>

using std::cin;
using std::cout;
using std::endl;
using std::cerr;

using std::string;
using std::to_string;
using std::vector;
using std::set;
using std::queue;
using std::stack;
using std::priority_queue;
using std::pair;
using std::make_pair;

using std::min;
using std::max;
using std::sort;
using std::abs;

using std::fixed;
using std::setprecision;
using std::setw;
using std::setfill;

typedef long long int ll;
const int MOD = 1e9 + 7;
const int INF = 1e9 + 314;

int main() {
    int n;
    cin >> n;

    int h = n / 3600;
    int m = (n % 3600) / 60;
    int s = n % 60;

    cout << setw(2) << setfill('0') << h;
    cout << ":";
    cout << setw(2) << setfill('0') << m;
    cout << ":";
    cout << setw(2) << setfill('0') << s;
    cout << endl;
    return 0;
}

Submission Info

Submission Time
Task B - 入浴時間
User somq14
Language C++14 (Clang 3.8.0)
Score 100
Code Size 1036 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