結果

問題 No.651 E869120 and Driving
ユーザー Mcpu3Mcpu3
提出日時 2018-06-18 18:05:02
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 147 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 27,904 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 09:01:11
合計ジャッジ時間 586 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void)
{
	double a;
	int s;
	scanf("%lf",&a);
	s=(int)(a/100*60+600);
	printf("%02d:%02d",s/60,s-s/60*60);
	return 0;
}
0