結果

問題 No.296 n度寝
ユーザー fal_rndfal_rnd
提出日時 2017-07-14 17:55:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 1,000 ms
コード長 237 bytes
コンパイル時間 2,421 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 55,164 KB
最終ジャッジ日時 2024-10-07 21:47:44
合計ジャッジ時間 5,967 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,992 KB
testcase_01 AC 157 ms
54,852 KB
testcase_02 AC 160 ms
55,044 KB
testcase_03 AC 163 ms
54,860 KB
testcase_04 AC 160 ms
54,676 KB
testcase_05 AC 161 ms
54,856 KB
testcase_06 AC 161 ms
54,832 KB
testcase_07 AC 162 ms
55,016 KB
testcase_08 AC 163 ms
54,776 KB
testcase_09 AC 161 ms
55,008 KB
testcase_10 AC 157 ms
55,164 KB
testcase_11 AC 158 ms
54,708 KB
testcase_12 AC 159 ms
54,780 KB
testcase_13 AC 160 ms
54,804 KB
testcase_14 AC 160 ms
55,124 KB
testcase_15 AC 158 ms
54,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class C{
	public static void main(String[]$){
		Scanner s=new Scanner(System.in);
		long n=s.nextInt(),h=s.nextInt(),m=s.nextInt(),t=s.nextInt(),r=h*60+m+t*(n-1);
		System.out.println(r%1440/60+"\n"+r%60);
	}
}
0