結果

問題 No.525 二度寝の季節
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 17:55:31
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 194 bytes
コンパイル時間 11,121 ms
コンパイル使用メモリ 436,964 KB
実行使用メモリ 57,976 KB
最終ジャッジ日時 2024-11-20 10:05:32
合計ジャッジ時間 22,834 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 329 ms
57,844 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 333 ms
57,800 KB
testcase_04 AC 333 ms
57,912 KB
testcase_05 AC 332 ms
57,876 KB
testcase_06 AC 326 ms
57,628 KB
testcase_07 AC 324 ms
57,748 KB
testcase_08 AC 325 ms
57,736 KB
testcase_09 AC 330 ms
57,912 KB
testcase_10 AC 331 ms
57,740 KB
testcase_11 AC 334 ms
57,560 KB
testcase_12 AC 319 ms
57,824 KB
testcase_13 AC 327 ms
57,912 KB
testcase_14 AC 336 ms
57,976 KB
testcase_15 AC 332 ms
57,836 KB
testcase_16 AC 330 ms
57,828 KB
testcase_17 AC 328 ms
57,648 KB
testcase_18 AC 323 ms
57,728 KB
testcase_19 AC 333 ms
57,728 KB
testcase_20 AC 328 ms
57,740 KB
testcase_21 AC 329 ms
57,720 KB
testcase_22 AC 331 ms
57,952 KB
testcase_23 AC 317 ms
57,620 KB
testcase_24 AC 330 ms
57,668 KB
testcase_25 AC 328 ms
57,808 KB
testcase_26 AC 326 ms
57,728 KB
testcase_27 AC 337 ms
57,800 KB
testcase_28 AC 339 ms
57,632 KB
testcase_29 AC 329 ms
57,740 KB
testcase_30 AC 323 ms
57,900 KB
testcase_31 AC 324 ms
57,840 KB
testcase_32 AC 325 ms
57,576 KB
testcase_33 AC 335 ms
57,840 KB
testcase_34 AC 330 ms
57,832 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