結果

問題 No.296 n度寝
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 23:14:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 3,894 ms
コンパイル使用メモリ 76,840 KB
実行使用メモリ 42,464 KB
最終ジャッジ日時 2024-06-23 05:46:50
合計ジャッジ時間 6,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
42,064 KB
testcase_01 AC 132 ms
42,136 KB
testcase_02 WA -
testcase_03 AC 131 ms
41,984 KB
testcase_04 AC 140 ms
42,256 KB
testcase_05 AC 139 ms
42,216 KB
testcase_06 AC 138 ms
42,340 KB
testcase_07 AC 118 ms
42,216 KB
testcase_08 AC 118 ms
42,176 KB
testcase_09 AC 135 ms
42,380 KB
testcase_10 AC 129 ms
42,464 KB
testcase_11 AC 130 ms
42,036 KB
testcase_12 WA -
testcase_13 AC 121 ms
42,112 KB
testcase_14 AC 126 ms
42,232 KB
testcase_15 AC 143 ms
41,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con296 {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner s = new Scanner(System.in);
		int N = s.nextInt() , H = s.nextInt() , M = s.nextInt() , T = s.nextInt();
		s.close();

		H = (H + (T*(N-1)) /60) % 24;
		if((M = M + (T*(N-1)) %60) > 59){
			H++;
		}
		M = M % 60;
		System.out.println(H + "\n" + M);

	}

}
0