Submission #740631


Source Code Expand

#include<stdio.h>

int main(){
	
	int a,h,m,s;

scanf("%d",&a);
h = a/3600;
m = (a-3600*h)/60;
s = a-(3600*h+60*m);

printf("%2.d:%02.d:%02.d\n",h,m,s);

return 0;

}

Submission Info

Submission Time
Task B - 入浴時間
User tkkt0001
Language C (GCC 4.6.4)
Score 0
Code Size 181 Byte
Status WA
Exec Time 27 ms
Memory 800 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:12:1: warning: '0' flag ignored with precision and ‘%d’ gnu_printf format [-Wformat]
./Main.c:12:1: warning: '0' flag ignored with precision and ‘%d’ gnu_printf format [-Wformat]
./Main.c:7:6: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 9
WA × 3
Set Name Test Cases
All test_1.txt, test_17977.txt, test_25298.txt, test_36922.txt, test_44309.txt, test_52415.txt, test_60165.txt, test_65487.txt, test_70993.txt, test_80915.txt, test_84810.txt, test_86399.txt
Case Name Status Exec Time Memory
sample_01.txt WA 25 ms 732 KB
sample_02.txt AC 27 ms 748 KB
test_1.txt WA 24 ms 732 KB
test_17977.txt WA 24 ms 796 KB
test_25298.txt WA 24 ms 792 KB
test_36922.txt AC 24 ms 788 KB
test_44309.txt AC 24 ms 800 KB
test_52415.txt AC 22 ms 732 KB
test_60165.txt AC 23 ms 796 KB
test_65487.txt AC 24 ms 792 KB
test_70993.txt AC 24 ms 796 KB
test_80915.txt AC 24 ms 800 KB
test_84810.txt AC 24 ms 800 KB
test_86399.txt AC 23 ms 800 KB