結果
問題 | No.651 E869120 and Driving |
ユーザー | tecchaxn |
提出日時 | 2018-02-23 22:25:57 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 377 bytes |
コンパイル時間 | 1,197 ms |
コンパイル使用メモリ | 158,664 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 08:52:52 |
合計ジャッジ時間 | 1,696 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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); }