結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,916 KB
testcase_01 AC 119 ms
40,768 KB
testcase_02 AC 108 ms
41,332 KB
testcase_03 AC 123 ms
41,312 KB
testcase_04 AC 105 ms
41,364 KB
testcase_05 AC 120 ms
41,612 KB
testcase_06 AC 118 ms
41,500 KB
testcase_07 AC 120 ms
41,356 KB
testcase_08 AC 109 ms
40,128 KB
testcase_09 AC 105 ms
41,108 KB
testcase_10 AC 122 ms
41,180 KB
testcase_11 AC 121 ms
41,248 KB
testcase_12 AC 106 ms
41,320 KB
testcase_13 AC 107 ms
39,904 KB
testcase_14 AC 121 ms
41,244 KB
testcase_15 AC 120 ms
41,536 KB
権限があれば一括ダウンロードができます

ソースコード

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(n>=2&&(m+stime%60)>=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