結果

問題 No.296 n度寝
ユーザー 37zigen37zigen
提出日時 2016-03-11 13:43:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 1,000 ms
コード長 381 bytes
コンパイル時間 1,662 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-07-07 02:44:08
合計ジャッジ時間 3,998 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
54,132 KB
testcase_01 AC 101 ms
53,416 KB
testcase_02 AC 99 ms
53,152 KB
testcase_03 AC 99 ms
52,704 KB
testcase_04 AC 99 ms
53,160 KB
testcase_05 AC 107 ms
52,904 KB
testcase_06 AC 120 ms
53,812 KB
testcase_07 AC 111 ms
54,040 KB
testcase_08 AC 104 ms
52,628 KB
testcase_09 AC 107 ms
53,928 KB
testcase_10 AC 109 ms
53,808 KB
testcase_11 AC 107 ms
54,008 KB
testcase_12 AC 95 ms
52,716 KB
testcase_13 AC 110 ms
53,916 KB
testcase_14 AC 111 ms
53,916 KB
testcase_15 AC 106 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Date;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		long exec_time=new Date().getTime();
		Scanner sc=new Scanner(System.in);
		
		int n=sc.nextInt();
		int h=sc.nextInt();
		int m=sc.nextInt();
		int t=sc.nextInt();
		
		int sum=60*h+m+(n-1)*t;
		
		System.out.println((sum/60)%24);
		System.out.println(sum%60);
		
	}
}
0