結果
| 問題 | No.651 E869120 and Driving |
| コンテスト | |
| ユーザー |
tecchaxn
|
| 提出日時 | 2018-02-23 22:25:57 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| + 351µs | |
| コード長 | 377 bytes |
| 記録 | |
| コンパイル時間 | 769 ms |
| コンパイル使用メモリ | 174,828 KB |
| 実行使用メモリ | 9,780 KB |
| 最終ジャッジ日時 | 2026-09-02 08:39:51 |
| 合計ジャッジ時間 | 1,673 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#include<bits/stdc++.h>
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) (v).begin(),(v).end()
#define INF 1e18
#define SIZE 100005
using namespace std;
typedef pair<int,int> P;
//-----------------------------------------------------------------------
signed main()
{
int a; cin>>a;
int x=60*a/100;
int h=10+(x/60),m=x%60;
printf("%2d:%02d\n",h,m);
}
tecchaxn