結果
問題 | No.296 n度寝 |
ユーザー | kaoetaya |
提出日時 | 2016-12-30 00:51:19 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 379 bytes |
コンパイル時間 | 3,333 ms |
コンパイル使用メモリ | 77,380 KB |
実行使用メモリ | 54,320 KB |
最終ジャッジ日時 | 2024-05-09 06:45:49 |
合計ジャッジ時間 | 6,293 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 135 ms
41,172 KB |
testcase_04 | AC | 130 ms
41,572 KB |
testcase_05 | AC | 132 ms
41,288 KB |
testcase_06 | AC | 130 ms
41,952 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 131 ms
41,456 KB |
testcase_11 | AC | 130 ms
41,272 KB |
testcase_12 | WA | - |
testcase_13 | AC | 135 ms
41,584 KB |
testcase_14 | AC | 133 ms
41,564 KB |
testcase_15 | WA | - |
ソースコード
import java.util.*; public class pre { public static void main(String[] args) { Scanner s = new Scanner(System.in); int n = s.nextInt(),h = s.nextInt(),m = s.nextInt(),t = s.nextInt(); int time = h * 60 + m; int count = 1; while(count < n){ time = time + t; count++; } System.out.println(time/60); System.out.println(time%60); } }