結果

問題 No.296 n度寝
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-01-05 15:22:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 612 bytes
コンパイル時間 3,501 ms
コンパイル使用メモリ 75,176 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-07-07 02:41:45
合計ジャッジ時間 5,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,944 KB
testcase_01 AC 99 ms
52,452 KB
testcase_02 AC 103 ms
52,836 KB
testcase_03 AC 97 ms
53,028 KB
testcase_04 AC 92 ms
52,500 KB
testcase_05 AC 109 ms
53,924 KB
testcase_06 AC 111 ms
53,932 KB
testcase_07 AC 120 ms
53,784 KB
testcase_08 AC 121 ms
54,192 KB
testcase_09 AC 109 ms
54,136 KB
testcase_10 AC 107 ms
54,000 KB
testcase_11 AC 109 ms
54,100 KB
testcase_12 AC 105 ms
53,784 KB
testcase_13 AC 108 ms
53,968 KB
testcase_14 AC 94 ms
52,716 KB
testcase_15 AC 105 ms
53,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yuki_coder;

import java.util.Scanner;

public class No_296 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	String s = sc.nextLine();
	sc.close();
	String[] str = s.split(" ", 0);
	int[] n = new int[4];
	for(int i = 0; i < 4; i++){
		n[i] = Integer.parseInt(str[i]);
	}
	n[0]--;
	
	for(int i = 0; i < n[0]; i++){
		int h = 0;
		int m = 0;
		m += (n[3] % 60);
		n[2] += m;
		m =0;
		if(n[2] >= 60){
			n[1]++;
			n[2] -= 60;
		}
		h += (n[3] / 60);
		n[1] += h;
		h = 0;
		while(n[1] >= 24){
			n[1] -= 24;
		}
	}
	System.out.println(n[1]);
	System.out.println(n[2]);
}
}
0