結果

問題 No.296 n度寝
ユーザー spacenautspacenaut
提出日時 2016-05-22 15:55:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 378 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 75,196 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-07-07 02:46:42
合計ジャッジ時間 4,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,892 KB
testcase_01 AC 112 ms
52,752 KB
testcase_02 AC 127 ms
54,256 KB
testcase_03 AC 119 ms
54,152 KB
testcase_04 AC 101 ms
52,940 KB
testcase_05 AC 98 ms
52,948 KB
testcase_06 AC 118 ms
53,896 KB
testcase_07 AC 108 ms
53,236 KB
testcase_08 AC 124 ms
54,124 KB
testcase_09 AC 102 ms
52,808 KB
testcase_10 AC 101 ms
52,768 KB
testcase_11 AC 113 ms
54,140 KB
testcase_12 AC 99 ms
52,992 KB
testcase_13 AC 112 ms
53,884 KB
testcase_14 AC 98 ms
52,880 KB
testcase_15 AC 114 ms
54,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class No0296{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt() - 1;
		int h = sc.nextInt();
		int m = sc.nextInt();
		int t = sc.nextInt();

		for(int i = 0; i < n; i++){
			m += t;
		}
		if(m / 60 > 0){
			h = h + (m / 60);
			m = m % 60;
		}
		System.out.println(h % 24);
		System.out.println(m);
	}
}
0