結果
| 問題 | No.651 E869120 and Driving |
| コンテスト | |
| ユーザー |
yuyutata123
|
| 提出日時 | 2018-04-27 15:44:01 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 145 bytes |
| 記録 | |
| コンパイル時間 | 299 ms |
| コンパイル使用メモリ | 38,692 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2026-03-16 01:04:01 |
| 合計ジャッジ時間 | 727 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 |
ソースコード
#include<stdio.h>
int main(void){
int s,h,m,ans;
scanf("%d",&s);
h=s/100;
m=((s-h*100)/100)*60;
printf("%d:%d\n",h,m);
}
yuyutata123