結果

問題 No.296 n度寝
ユーザー 水野嶺水野嶺
提出日時 2020-05-25 15:40:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 500 bytes
コンパイル時間 1,881 ms
コンパイル使用メモリ 74,180 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-10-13 02:05:20
合計ジャッジ時間 4,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,076 KB
testcase_01 AC 113 ms
39,892 KB
testcase_02 AC 114 ms
40,164 KB
testcase_03 AC 124 ms
40,908 KB
testcase_04 AC 123 ms
41,184 KB
testcase_05 AC 109 ms
39,864 KB
testcase_06 AC 114 ms
41,060 KB
testcase_07 WA -
testcase_08 AC 117 ms
40,908 KB
testcase_09 AC 120 ms
41,024 KB
testcase_10 WA -
testcase_11 AC 124 ms
40,924 KB
testcase_12 AC 119 ms
41,228 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int  n = sc.nextInt();
		int  h = sc.nextInt();
		int  m = sc.nextInt();
		int  t = sc.nextInt();
		
		int stime =(n-1)*t;
		
		int sh = stime/60;
		if((m+t)>60){
			sh +=1;
		}
		int ah =(h + sh)%24;
		
		int sm = stime%60;
		int am = (m + sm)%60;
		

		
		System.out.println(ah);
		System.out.println(am);
	}
}
0