結果
問題 | No.296 n度寝 |
ユーザー | 水野嶺 |
提出日時 | 2020-05-25 15:29:31 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 465 bytes |
コンパイル時間 | 1,860 ms |
コンパイル使用メモリ | 74,012 KB |
実行使用メモリ | 56,112 KB |
最終ジャッジ日時 | 2024-10-13 02:05:01 |
合計ジャッジ時間 | 4,434 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 123 ms
41,224 KB |
testcase_04 | AC | 118 ms
41,400 KB |
testcase_05 | AC | 121 ms
41,600 KB |
testcase_06 | AC | 109 ms
39,976 KB |
testcase_07 | AC | 119 ms
41,248 KB |
testcase_08 | AC | 110 ms
40,044 KB |
testcase_09 | WA | - |
testcase_10 | AC | 121 ms
41,084 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 107 ms
41,216 KB |
testcase_14 | AC | 103 ms
41,216 KB |
testcase_15 | AC | 121 ms
41,192 KB |
ソースコード
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)%24; int sm = stime%60; int am = (m + sm)%60; System.out.println(ah); System.out.println(am); } }