結果

問題 No.651 E869120 and Driving
ユーザー kazuki95810kazuki95810
提出日時 2020-05-14 06:25:23
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 666 bytes
コンパイル時間 1,540 ms
コンパイル使用メモリ 166,276 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 17:58:15
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ALL(a) (a).begin(), (a).end()
#define RALL(a) (a).rbegin(), (a).rend()
#define pb push_back
#define FOR(i, a, b) for (int i = (a); i < (b); ++i)
#define rep(i, n) FOR(i, 0, n)
#define ll long long
using namespace std;

const ll P = 1000000007;
int gcd(int a, int b) { return b != 0 ? gcd(b, a % b) : a; }
int lcm(int a, int b) { return a / gcd(a, b) * b; }

int main()
{
  cout << fixed << setprecision(10);
  int N;
  cin >> N;
  cout << N/100+10 ;
  cout << ":" ;
  if(N%100*3/5>10){
  cout << N%100*3/5 ;
  }
  else if(N%100*3/5==6)
  {
      cout << "06" ;
  }
  else if(N%100*3/5==0)
  {
      cout << "00";
  }
  
  return 0;
}
0