結果
問題 | No.651 E869120 and Driving |
ユーザー |
![]() |
提出日時 | 2018-09-15 16:59:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 185 bytes |
コンパイル時間 | 1,479 ms |
コンパイル使用メモリ | 166,304 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 09:02:38 |
合計ジャッジ時間 | 1,937 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int a,t,m; cin >> a; t = 10 + a / 100; m = 0 + (a % 100) * 60 / 100; printf("%02d:",t); printf("%02d",m); }