結果
| 問題 |
No.651 E869120 and Driving
|
| コンテスト | |
| ユーザー |
しとお
|
| 提出日時 | 2018-02-23 22:25:05 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 174 bytes |
| コンパイル時間 | 481 ms |
| コンパイル使用メモリ | 63,108 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-09 17:44:37 |
| 合計ジャッジ時間 | 1,020 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 |
ソースコード
#include <iostream>
using namespace std;
int main(){
int a;
cin >> a;
int h=int(a/100);
int m=int(((a*100)-h)*60);
cout << 10+h << ':' << m << '\n';
return 0;
}
しとお