Submission #201419


Source Code Expand

import java.util.*;
public class Main {
	Scanner in = new Scanner(System.in);
	public static void main(String[] args) {
		new Main();
	}

	public Main(){
		new B().doIt();
	}
	
	class B{ 
		void doIt(){
			int n = in.nextInt();
			int h = n/3600;
			n-=h*3600;
			int m = n/60;
			n-=m*60;
			int s = n;
			String hh = Integer.toString(h);
			String mm = Integer.toString(m);
			String ss = Integer.toString(s);
			for(;hh.length()<2;)hh="0"+hh;
			for(;mm.length()<2;)mm="0"+mm;
			for(;ss.length()<2;)ss="0"+ss;
			System.out.println(hh+":"+mm+":"+ss);
		}
	}
	
}

Submission Info

Submission Time
Task B - 入浴時間
User ne240214
Language Java (OpenJDK 1.7.0)
Score 100
Code Size 594 Byte
Status AC
Exec Time 504 ms
Memory 23216 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 12
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 AC 497 ms 23088 KB
sample_02.txt AC 491 ms 23212 KB
test_1.txt AC 483 ms 23084 KB
test_17977.txt AC 501 ms 23088 KB
test_25298.txt AC 484 ms 23208 KB
test_36922.txt AC 496 ms 23208 KB
test_44309.txt AC 491 ms 23208 KB
test_52415.txt AC 480 ms 23216 KB
test_60165.txt AC 492 ms 23080 KB
test_65487.txt AC 496 ms 23092 KB
test_70993.txt AC 504 ms 23084 KB
test_80915.txt AC 496 ms 23216 KB
test_84810.txt AC 489 ms 23216 KB
test_86399.txt AC 488 ms 23216 KB