結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,948 KB
testcase_01 AC 115 ms
54,132 KB
testcase_02 AC 118 ms
54,008 KB
testcase_03 AC 97 ms
52,828 KB
testcase_04 AC 104 ms
53,876 KB
testcase_05 AC 107 ms
53,856 KB
testcase_06 AC 110 ms
54,024 KB
testcase_07 AC 107 ms
52,956 KB
testcase_08 AC 106 ms
52,968 KB
testcase_09 AC 108 ms
53,988 KB
testcase_10 AC 106 ms
54,080 KB
testcase_11 AC 112 ms
54,132 KB
testcase_12 AC 105 ms
53,832 KB
testcase_13 AC 98 ms
52,592 KB
testcase_14 AC 109 ms
54,188 KB
testcase_15 AC 110 ms
53,992 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