結果
| 問題 |
No.651 E869120 and Driving
|
| コンテスト | |
| ユーザー |
water
|
| 提出日時 | 2020-03-05 19:49:04 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 252 bytes |
| コンパイル時間 | 1,475 ms |
| コンパイル使用メモリ | 165,644 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-14 02:05:35 |
| 合計ジャッジ時間 | 2,153 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#include <bits/stdc++.h>
#define INF 990000000
//31
using namespace std;
int main() {
int n;
cin>>n;
n*=10;
n/=100;
n*=60;
n/=10;
int sd=n%60;
if(sd<10){
cout << 10+n/60<<":"<<"0"<<n%60<<endl;
}else{
cout << 10+n/60<<":"<<n%60<<endl;
}
}
water