Submission #1367363


Source Code Expand

import java.util.*;

public class Main {    
    
   public static void main(String[] args){
       
       Scanner sc = new Scanner(System.in);
    
       int N = sc.nextInt();
       
       
       int h = 0;
       int m = 0;
       int s = 0;
       
       if(N >= 3600){
          h = N/3600;                              
          N = N - 3600*h;
       }
       
       if(N >= 60){
          m = N/60;
          N = N - 60*m;
       }
       
       s = N;
       
       System.out.println(
               
             ((String.valueOf(h).length() == 1) ? "0": "") + String.valueOf(h) 
               + ":" + 
             ((String.valueOf(m).length() == 1) ? "0": "" )+ String.valueOf(m) 
               + ":" + 
             ((String.valueOf(s).length() == 1) ? "0": "" )+ String.valueOf(s)

                          );
              
   }   
}
        

Submission Info

Submission Time
Task B - 入浴時間
User suesue
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 909 Byte
Status AC
Exec Time 99 ms
Memory 23124 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 93 ms 20692 KB
sample_02.txt AC 94 ms 19796 KB
test_1.txt AC 93 ms 18900 KB
test_17977.txt AC 92 ms 18644 KB
test_25298.txt AC 93 ms 20812 KB
test_36922.txt AC 95 ms 19540 KB
test_44309.txt AC 93 ms 21588 KB
test_52415.txt AC 91 ms 19796 KB
test_60165.txt AC 94 ms 23124 KB
test_65487.txt AC 92 ms 19924 KB
test_70993.txt AC 93 ms 18772 KB
test_80915.txt AC 99 ms 21840 KB
test_84810.txt AC 91 ms 19924 KB
test_86399.txt AC 92 ms 19156 KB