結果
| 問題 | 
                            No.651 E869120 and Driving
                             | 
                    
| コンテスト | |
| ユーザー | 
                             Kura
                         | 
                    
| 提出日時 | 2019-02-16 15:37:25 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 215 bytes | 
| コンパイル時間 | 372 ms | 
| コンパイル使用メモリ | 54,244 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-09-22 09:06:33 | 
| 合計ジャッジ時間 | 879 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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