Submission #2243708


Source Code Expand

#include<cstdio>
using namespace std;
int main()
{
    long long n;
    scanf("%d",&n);
    printf("%2d:%2d:%2d",n/3600,n/60%60,n%60);
}

Submission Info

Submission Time
Task B - 入浴時間
User luogu_bot3
Language C++ (GCC 5.4.1)
Score 0
Code Size 143 Byte
Status WA
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:6:18: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘long long int*’ [-Wformat=]
     scanf("%d",&n);
                  ^
./Main.cpp:7:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
     printf("%2d:%2d:%2d",n/3600,n/60%60,n%60);
                                             ^
./Main.cpp:7:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long long int’ [-Wformat=]
./Main.cpp:7:45: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘long long int’ [-Wformat=]
./Main.cpp:6:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d",&n);
                   ^

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 10
WA × 4
Set Name Test Cases
All sample_01.txt, sample_02.txt, 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 1 ms 128 KB
sample_02.txt AC 1 ms 128 KB
test_1.txt WA 1 ms 128 KB
test_17977.txt WA 1 ms 128 KB
test_25298.txt WA 1 ms 128 KB
test_36922.txt AC 0 ms 128 KB
test_44309.txt AC 1 ms 128 KB
test_52415.txt AC 1 ms 128 KB
test_60165.txt AC 1 ms 128 KB
test_65487.txt AC 1 ms 128 KB
test_70993.txt AC 1 ms 128 KB
test_80915.txt AC 1 ms 128 KB
test_84810.txt AC 1 ms 128 KB
test_86399.txt AC 1 ms 128 KB