Submission #1187250


Source Code Expand

import java.util.*;
public class Main {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int h, m, s;
		h = N / 3600;
		N = N % 3600;
		m = N / 60;
		N = N % 60;
		s = N;
		if(h >= 0 && h <= 9){
			System.out.print("0" + h);
		}
		else if (h >= 10) System.out.print(h);
		System.out.print(":");
		
		if(m >= 0 && m <= 9){
			System.out.print("0" + m);
		}
		else if (m >= 10) System.out.print(m);
		System.out.print(":");
		
		if(s >= 0 && s <= 9){
			System.out.print("0" + s);
		}
		else if (s >= 10) System.out.print(s);
		System.out.println("");

		}
		
	}

Submission Info

Submission Time
Task B - 入浴時間
User ne280133
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 693 Byte
Status AC
Exec Time 94 ms
Memory 21972 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 92 ms 21076 KB
sample_02.txt AC 90 ms 20684 KB
test_1.txt AC 91 ms 21844 KB
test_17977.txt AC 92 ms 19924 KB
test_25298.txt AC 94 ms 21972 KB
test_36922.txt AC 89 ms 21204 KB
test_44309.txt AC 89 ms 19796 KB
test_52415.txt AC 91 ms 16980 KB
test_60165.txt AC 90 ms 21844 KB
test_65487.txt AC 91 ms 20948 KB
test_70993.txt AC 90 ms 21844 KB
test_80915.txt AC 93 ms 20688 KB
test_84810.txt AC 91 ms 17748 KB
test_86399.txt AC 94 ms 21332 KB