結果

問題 No.296 n度寝
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-01-05 15:24:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 647 bytes
コンパイル時間 2,763 ms
コンパイル使用メモリ 77,624 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-07-07 02:42:18
合計ジャッジ時間 5,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,080 KB
testcase_01 AC 102 ms
53,256 KB
testcase_02 AC 117 ms
54,092 KB
testcase_03 AC 103 ms
54,112 KB
testcase_04 AC 102 ms
53,732 KB
testcase_05 AC 103 ms
54,124 KB
testcase_06 AC 106 ms
54,232 KB
testcase_07 AC 117 ms
53,980 KB
testcase_08 AC 117 ms
54,128 KB
testcase_09 AC 107 ms
54,300 KB
testcase_10 AC 104 ms
53,852 KB
testcase_11 AC 105 ms
53,736 KB
testcase_12 AC 103 ms
54,084 KB
testcase_13 AC 107 ms
53,752 KB
testcase_14 AC 108 ms
53,872 KB
testcase_15 AC 102 ms
53,796 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++){
		if(n[0] == 1440){
			break;
		}
		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