結果

問題 No.296 n度寝
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-01-05 14:08:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 3,797 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 41,900 KB
最終ジャッジ日時 2024-09-19 11:26:09
合計ジャッジ時間 6,533 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 134 ms
41,184 KB
testcase_04 AC 122 ms
39,976 KB
testcase_05 AC 135 ms
41,016 KB
testcase_06 AC 134 ms
41,332 KB
testcase_07 WA -
testcase_08 AC 140 ms
41,040 KB
testcase_09 WA -
testcase_10 AC 138 ms
41,164 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 135 ms
41,180 KB
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
	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[2] >= 60){
			if(n[1]>=24){
				n[1] = 0;
			}
			n[1]++;
			n[2] += -60;
		}
		n[2] += n[3];
	}
	System.out.println(n[1]);
	System.out.println(n[2]);
}
}
0