結果
問題 |
No.651 E869120 and Driving
|
ユーザー |
![]() |
提出日時 | 2018-09-15 16:58:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 176 bytes |
コンパイル時間 | 1,331 ms |
コンパイル使用メモリ | 165,656 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-18 07:06:29 |
合計ジャッジ時間 | 1,762 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 7 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int a,t,m; cin >> a; t = a / 100; m = (a % 100) * 60 / 100; printf("%02d:",t); printf("%02d",m); }