結果

問題 No.501 穴と文字列
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-25 17:29:33
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 11,337 ms
コンパイル使用メモリ 436,024 KB
実行使用メモリ 56,916 KB
最終ジャッジ日時 2024-11-20 10:36:24
合計ジャッジ時間 19,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
56,808 KB
testcase_01 AC 322 ms
56,764 KB
testcase_02 AC 316 ms
56,736 KB
testcase_03 AC 317 ms
56,728 KB
testcase_04 AC 314 ms
56,916 KB
testcase_05 AC 311 ms
56,856 KB
testcase_06 AC 321 ms
56,876 KB
testcase_07 AC 321 ms
56,820 KB
testcase_08 AC 319 ms
56,776 KB
testcase_09 AC 319 ms
56,728 KB
testcase_10 AC 316 ms
56,744 KB
testcase_11 AC 318 ms
56,736 KB
testcase_12 AC 320 ms
56,692 KB
testcase_13 AC 314 ms
56,832 KB
testcase_14 AC 313 ms
56,780 KB
testcase_15 AC 316 ms
56,780 KB
testcase_16 AC 316 ms
56,784 KB
testcase_17 AC 318 ms
56,788 KB
testcase_18 AC 323 ms
56,880 KB
testcase_19 AC 323 ms
56,692 KB
testcase_20 AC 321 ms
56,800 KB
testcase_21 AC 317 ms
56,840 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(t)         + "C".repeat(b-t) )
    else   -> null
  }
}
0