Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132168 蔡胤泽 05拆分时间 C++ Accepted 2 MS 276 KB 197 2025-10-07 10:49:18

Tests(10/10):


Code:

#include <iostream> using namespace std; int main(){ int s, a , b , c; cin >> s; a = s / 3600; b = s / 60 % 60; c = s % 60; cout << a << ' ' << b << ' ' << c; return 0; }