結果
問題 | No.296 n度寝 |
ユーザー | matsuyoshi30 |
提出日時 | 2017-03-09 21:36:23 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 729 bytes |
コンパイル時間 | 2,446 ms |
コンパイル使用メモリ | 75,360 KB |
実行使用メモリ | 56,272 KB |
最終ジャッジ日時 | 2024-06-24 00:14:47 |
合計ジャッジ時間 | 6,115 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 165 ms
54,528 KB |
testcase_04 | AC | 165 ms
54,032 KB |
testcase_05 | AC | 155 ms
54,080 KB |
testcase_06 | AC | 150 ms
54,048 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 161 ms
54,676 KB |
testcase_11 | AC | 155 ms
54,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 154 ms
54,400 KB |
testcase_14 | AC | 161 ms
54,108 KB |
testcase_15 | WA | - |
ソースコード
import java.util.Scanner; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); int h = in.nextInt(); int m = in.nextInt(); int t = in.nextInt(); if(n == 1) { System.out.println(h); System.out.println(m); } else { for(int i=0; i<n-1; i++) { m += t; if(m >= 60) { h++; m -= 60; } } System.out.println(h); System.out.println(m); } in.close(); } }