結果

問題 No.536 人工知能
ユーザー 💕💖💞💕💖💞
提出日時 2017-07-01 06:16:41
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 218 bytes
コンパイル時間 13,247 ms
コンパイル使用メモリ 427,932 KB
実行使用メモリ 51,108 KB
最終ジャッジ日時 2024-11-20 10:45:48
合計ジャッジ時間 14,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
51,044 KB
testcase_01 AC 293 ms
49,708 KB
testcase_02 AC 291 ms
49,708 KB
testcase_03 AC 306 ms
50,992 KB
testcase_04 AC 311 ms
51,088 KB
testcase_05 AC 289 ms
49,548 KB
testcase_06 AC 309 ms
51,108 KB
testcase_07 AC 289 ms
49,696 KB
testcase_08 AC 310 ms
51,084 KB
testcase_09 AC 290 ms
49,872 KB
testcase_10 AC 291 ms
49,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

fun main( args : Array<String> ) {
  readLine()?.let {
    when {
    it[it.length-2] == 'a' && it[it.length-1] == 'i' -> it.slice(0..it.length-3) + "AI"
    else -> it + "-AI"
    }.let {
      println(it)
    }
  }
}
0