結果
問題 | No.651 E869120 and Driving |
ユーザー | chacoder1 |
提出日時 | 2020-12-02 23:02:09 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 184 bytes |
コンパイル時間 | 2,252 ms |
コンパイル使用メモリ | 193,732 KB |
最終ジャッジ日時 | 2025-01-16 13:39:00 |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; int temp=a/10*6; cout<<10+temp/60<<":"<<setfill('0')<<right<<setw(2)<<temp%60<<endl; return 0; }