結果

問題 No.296 n度寝
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 15:21:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 1,000 ms
コード長 370 bytes
コンパイル時間 2,730 ms
コンパイル使用メモリ 74,076 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-07-07 02:49:58
合計ジャッジ時間 5,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,060 KB
testcase_01 AC 105 ms
53,048 KB
testcase_02 AC 99 ms
52,936 KB
testcase_03 AC 109 ms
52,832 KB
testcase_04 AC 115 ms
53,896 KB
testcase_05 AC 101 ms
52,980 KB
testcase_06 AC 114 ms
54,196 KB
testcase_07 AC 112 ms
54,160 KB
testcase_08 AC 110 ms
53,776 KB
testcase_09 AC 108 ms
53,832 KB
testcase_10 AC 108 ms
54,036 KB
testcase_11 AC 96 ms
52,612 KB
testcase_12 AC 100 ms
52,772 KB
testcase_13 AC 112 ms
54,048 KB
testcase_14 AC 108 ms
53,580 KB
testcase_15 AC 113 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int n, h, m, t, tm, ah, am;
		n = sc.nextInt();
		h = sc.nextInt();
		m = sc.nextInt();
		t = sc.nextInt();
		tm = h*60 + m + t*(n-1);
		ah = (tm/60)%24;
		am = tm%60;
		System.out.println(ah);
		System.out.println(am);

		sc.close();
	}
}
0