結果

問題 No.501 穴と文字列
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-25 17:26:41
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 11,371 ms
コンパイル使用メモリ 430,584 KB
実行使用メモリ 57,124 KB
最終ジャッジ日時 2024-11-20 10:34:04
合計ジャッジ時間 19,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 326 ms
56,880 KB
testcase_02 WA -
testcase_03 AC 316 ms
56,844 KB
testcase_04 AC 312 ms
56,796 KB
testcase_05 WA -
testcase_06 AC 320 ms
56,928 KB
testcase_07 AC 321 ms
56,684 KB
testcase_08 AC 320 ms
56,948 KB
testcase_09 AC 325 ms
56,816 KB
testcase_10 WA -
testcase_11 AC 317 ms
56,948 KB
testcase_12 AC 318 ms
56,732 KB
testcase_13 AC 314 ms
56,928 KB
testcase_14 WA -
testcase_15 AC 323 ms
56,744 KB
testcase_16 AC 326 ms
56,900 KB
testcase_17 AC 316 ms
56,672 KB
testcase_18 WA -
testcase_19 AC 316 ms
56,992 KB
testcase_20 WA -
testcase_21 AC 317 ms
56,788 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) { 
          ^
Main.kt:7:15: warning: the expression is unused
    else   -> null
              ^

ソースコード

diff #

fun main( args : Array<String> ) { 
  val (b, t) = readLine()!!.split(" ").map { x -> x.toInt() }
  when { 
    b == t -> println("A".repeat(b))
    b  < t -> println("A".repeat(b - (t-b)) + "B".repeat(t-b) ) 
    b  > t -> println("A".repeat(b - t)     + "C".repeat(t) )
    else   -> null
  }
}
0