結果

問題 No.296 n度寝
ユーザー 水野嶺水野嶺
提出日時 2020-05-25 15:27:05
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 54,612 KB
最終ジャッジ日時 2024-04-21 03:44:41
合計ジャッジ時間 5,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 131 ms
41,200 KB
testcase_04 AC 137 ms
41,308 KB
testcase_05 AC 135 ms
41,412 KB
testcase_06 AC 131 ms
41,476 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 139 ms
41,316 KB
testcase_10 AC 130 ms
41,344 KB
testcase_11 WA -
testcase_12 AC 129 ms
41,180 KB
testcase_13 AC 131 ms
41,232 KB
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;
		int ah =(h + sh)%23;
		
		int sm = stime%60;
		int am = (m + sm)%60;
		
		System.out.println(ah);
		System.out.println(am);
	}
}
0