結果

問題 No.296 n度寝
ユーザー Mcpu3Mcpu3
提出日時 2018-06-21 23:27:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 76,376 KB
実行使用メモリ 55,136 KB
最終ジャッジ日時 2024-06-30 17:46:28
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
55,092 KB
testcase_01 AC 152 ms
54,768 KB
testcase_02 AC 148 ms
55,136 KB
testcase_03 AC 153 ms
54,860 KB
testcase_04 AC 148 ms
54,920 KB
testcase_05 AC 148 ms
54,948 KB
testcase_06 AC 150 ms
54,840 KB
testcase_07 AC 136 ms
54,452 KB
testcase_08 AC 149 ms
54,860 KB
testcase_09 AC 157 ms
54,828 KB
testcase_10 AC 148 ms
54,724 KB
testcase_11 AC 145 ms
54,892 KB
testcase_12 AC 148 ms
55,076 KB
testcase_13 AC 150 ms
54,872 KB
testcase_14 AC 150 ms
54,780 KB
testcase_15 AC 153 ms
55,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no296{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n,h,m,t;
		n=stdIn.nextInt();
		h=stdIn.nextInt();
		m=stdIn.nextInt();
		t=stdIn.nextInt();
		h=h*60+m+t*--n;
		System.out.print(h/60%24+"\n"+h%60);
	}
}
0