結果

問題 No.296 n度寝
ユーザー UEUEUE66UEUEUE66
提出日時 2018-05-28 09:20:36
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 992 ms / 1,000 ms
コード長 487 bytes
コンパイル時間 15,074 ms
コンパイル使用メモリ 243,408 KB
実行使用メモリ 64,840 KB
最終ジャッジ日時 2024-09-27 14:22:04
合計ジャッジ時間 32,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 983 ms
64,840 KB
testcase_01 AC 960 ms
64,684 KB
testcase_02 AC 973 ms
64,832 KB
testcase_03 AC 974 ms
64,812 KB
testcase_04 AC 967 ms
64,824 KB
testcase_05 AC 970 ms
64,664 KB
testcase_06 AC 986 ms
64,656 KB
testcase_07 AC 975 ms
64,552 KB
testcase_08 AC 967 ms
64,584 KB
testcase_09 AC 980 ms
64,696 KB
testcase_10 AC 983 ms
64,756 KB
testcase_11 AC 974 ms
64,736 KB
testcase_12 AC 966 ms
64,824 KB
testcase_13 AC 992 ms
64,592 KB
testcase_14 AC 961 ms
64,644 KB
testcase_15 AC 962 ms
64,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object ndone {
  def main(args: Array[String]): Unit = {
    val sc = new Scanner(System.in)
    val n, h0, m0, t = sc.nextInt
    var h1, h2, m1, m2 = 0
    var over = (n-1)*t
    m1 = m0 + over
    if(m1 < 60) {
      println(h0)
      println(m1)
    } else {
      h1 = h0 + m1 / 60
      m2 = m1 % 60
      if(h1 < 24) {
        println(h1)
        println(m2)
      } else {
        h2 = h1 % 24
        println(h2)
        println(m2)
      }
    }
  }
}
0