結果

問題 No.296 n度寝
ユーザー GBGB
提出日時 2018-04-10 21:58:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 417 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-06-26 20:58:52
合計ジャッジ時間 4,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,120 KB
testcase_01 AC 108 ms
39,932 KB
testcase_02 AC 130 ms
41,432 KB
testcase_03 AC 124 ms
41,492 KB
testcase_04 AC 111 ms
39,996 KB
testcase_05 AC 120 ms
41,312 KB
testcase_06 AC 121 ms
41,332 KB
testcase_07 AC 121 ms
41,384 KB
testcase_08 AC 123 ms
41,520 KB
testcase_09 AC 123 ms
41,248 KB
testcase_10 AC 127 ms
41,296 KB
testcase_11 AC 126 ms
41,048 KB
testcase_12 AC 122 ms
41,116 KB
testcase_13 AC 124 ms
41,172 KB
testcase_14 AC 124 ms
41,300 KB
testcase_15 AC 124 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main{
  public static void main(String[] args) throws IOException{

    Scanner scan=new Scanner(System.in);
    int n=Integer.parseInt(scan.next());
    int h=Integer.parseInt(scan.next());
    int m=Integer.parseInt(scan.next());
    int t=Integer.parseInt(scan.next());

    int at=h*60+m+t*(n-1);

    System.out.println(at/60%24);
    System.out.println(at%60);
  }
}
0