結果

問題 No.525 二度寝の季節
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 17:57:32
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 370 ms / 1,000 ms
コード長 195 bytes
コンパイル時間 11,071 ms
コンパイル使用メモリ 433,000 KB
実行使用メモリ 57,868 KB
最終ジャッジ日時 2024-11-20 10:08:26
合計ジャッジ時間 25,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
57,608 KB
testcase_01 AC 363 ms
57,728 KB
testcase_02 AC 359 ms
57,708 KB
testcase_03 AC 362 ms
57,584 KB
testcase_04 AC 362 ms
57,660 KB
testcase_05 AC 349 ms
57,692 KB
testcase_06 AC 360 ms
57,584 KB
testcase_07 AC 361 ms
57,624 KB
testcase_08 AC 362 ms
57,604 KB
testcase_09 AC 361 ms
57,632 KB
testcase_10 AC 361 ms
57,716 KB
testcase_11 AC 357 ms
57,736 KB
testcase_12 AC 364 ms
57,644 KB
testcase_13 AC 363 ms
57,580 KB
testcase_14 AC 366 ms
57,640 KB
testcase_15 AC 361 ms
57,560 KB
testcase_16 AC 357 ms
57,716 KB
testcase_17 AC 358 ms
57,704 KB
testcase_18 AC 355 ms
57,516 KB
testcase_19 AC 361 ms
57,704 KB
testcase_20 AC 362 ms
57,632 KB
testcase_21 AC 360 ms
57,716 KB
testcase_22 AC 356 ms
57,484 KB
testcase_23 AC 362 ms
57,480 KB
testcase_24 AC 361 ms
57,676 KB
testcase_25 AC 361 ms
57,748 KB
testcase_26 AC 358 ms
57,588 KB
testcase_27 AC 365 ms
57,620 KB
testcase_28 AC 370 ms
57,716 KB
testcase_29 AC 360 ms
57,556 KB
testcase_30 AC 366 ms
57,728 KB
testcase_31 AC 357 ms
57,624 KB
testcase_32 AC 362 ms
57,700 KB
testcase_33 AC 362 ms
57,868 KB
testcase_34 AC 361 ms
57,716 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

fun main(args : Array<String>) {
  var (a,b) = readLine()!!.split(":").map { x -> x.toInt() }
  b = b+5
  if( b >= 60 )
    a = a + 1

  a = a%24
  b = b%60
  println("%02d:%02d".format(a, b))
}
0