結果
| 問題 | No.651 E869120 and Driving |
| コンテスト | |
| ユーザー |
Kura
|
| 提出日時 | 2019-02-16 15:37:25 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 215 bytes |
| 記録 | |
| コンパイル時間 | 302 ms |
| コンパイル使用メモリ | 70,000 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-10 15:24:09 |
| 合計ジャッジ時間 | 1,086 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 |
ソースコード
#include<iostream>
using namespace std;
int main(){
int a,b,c;
cin>>a;
b=a/100;
c=(a%100)*6/10;
if(c<10){
cout<<b+10<<':'<<0<<c<<endl;
}else{
cout<<b+10<<':'<<c<<endl;
}
}
Kura