Submission #1676824


Source Code Expand

n=int(input())
hh=n//3600
mm=(n-hh*3600)//60
ss=n-hh*3600-mm*60

if len(str(hh))==1:
    hh="0"+str(hh)
if len(str(mm))==1:
    mm="0"+str(mm)
if len(str(ss))==1:
    ss="0"+str(ss)

print(str(hh)+":"+str(mm)+":"+str(ss))

Submission Info

Submission Time
Task B - 入浴時間
User Yuki_Utaai
Language Python (3.4.3)
Score 100
Code Size 233 Byte
Status AC
Exec Time 19 ms
Memory 3060 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 14
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 AC 18 ms 3060 KB
sample_02.txt AC 18 ms 3060 KB
test_1.txt AC 18 ms 2940 KB
test_17977.txt AC 18 ms 3060 KB
test_25298.txt AC 18 ms 3060 KB
test_36922.txt AC 18 ms 3060 KB
test_44309.txt AC 18 ms 3060 KB
test_52415.txt AC 18 ms 2940 KB
test_60165.txt AC 18 ms 2940 KB
test_65487.txt AC 18 ms 3060 KB
test_70993.txt AC 19 ms 2940 KB
test_80915.txt AC 19 ms 2940 KB
test_84810.txt AC 19 ms 3060 KB
test_86399.txt AC 18 ms 3060 KB