結果
問題 | No.296 n度寝 |
ユーザー | jimano |
提出日時 | 2018-01-27 14:13:26 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 661 bytes |
コンパイル時間 | 4,177 ms |
コンパイル使用メモリ | 74,244 KB |
実行使用メモリ | 40,092 KB |
最終ジャッジ日時 | 2024-06-09 05:24:46 |
合計ジャッジ時間 | 6,374 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 81 ms
38,328 KB |
testcase_04 | AC | 78 ms
38,140 KB |
testcase_05 | AC | 75 ms
37,764 KB |
testcase_06 | AC | 81 ms
38,104 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 78 ms
38,160 KB |
testcase_11 | AC | 80 ms
38,216 KB |
testcase_12 | WA | - |
testcase_13 | AC | 79 ms
38,024 KB |
testcase_14 | AC | 76 ms
37,992 KB |
testcase_15 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No0296_2 { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in));) { String[] str = br.readLine().split(" "); int n = Integer.parseInt(str[0]); int h = Integer.parseInt(str[1]); int m = Integer.parseInt(str[2]); int t = Integer.parseInt(str[3]); for (int i = 0; i < n - 1; i++) { m += t; if (m > 59) { h += m / 60; m = m % 60;// 繰り上げ } } System.out.print(h + "\n" + m); } catch (IOException e) { e.printStackTrace(); } } }