結果
| 問題 |
No.651 E869120 and Driving
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-03-28 01:12:48 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 196 bytes |
| コンパイル時間 | 557 ms |
| コンパイル使用メモリ | 54,984 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-25 13:02:01 |
| 合計ジャッジ時間 | 1,068 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 4 WA * 3 |
ソースコード
#include<iostream>
using namespace std;
int main(){
int a,t;
int h=10, m=0;
cin >> a;
t=(a/100.0)*60;
m+=t;
h+=m/60;
m%=60;
h%=24;
cout << h << ":" << m << endl;
return 0;
}