結果

問題 No.536 人工知能
ユーザー arbtarbt
提出日時 2017-09-17 12:13:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 1,000 ms
コード長 511 bytes
コンパイル時間 11,086 ms
コンパイル使用メモリ 434,832 KB
実行使用メモリ 55,312 KB
最終ジャッジ日時 2024-11-20 12:46:01
合計ジャッジ時間 15,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
55,120 KB
testcase_01 AC 335 ms
55,180 KB
testcase_02 AC 335 ms
55,256 KB
testcase_03 AC 334 ms
55,220 KB
testcase_04 AC 336 ms
55,264 KB
testcase_05 AC 335 ms
55,312 KB
testcase_06 AC 334 ms
55,212 KB
testcase_07 AC 335 ms
55,016 KB
testcase_08 AC 341 ms
55,116 KB
testcase_09 AC 336 ms
55,024 KB
testcase_10 AC 336 ms
55,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:11:40: warning: 'toUpperCase(): String' is deprecated. Use uppercase() instead.
    if( len>=2 && S.substring(len - 2).toUpperCase()=="AI") {
                                       ^
Main.kt:19:11: warning: parameter 'argv' is never used
fun main( argv : Array<String> ) {
          ^

ソースコード

diff #

import java.util.Scanner

//
fun _Do() {

    val S = scan.next()// 1-
    
    val len = S.length
    
    if( len>=2 && S.substring(len - 2).toUpperCase()=="AI") {
        println(S.substring(0, len - 2) + "AI")
    }
    else
        println(S + "-AI")
}

var scan = Scanner(System.`in`)
fun main( argv : Array<String> ) {
    _Do()
}

fun strings(N:Int):Array<String> = Array(N,{scan.next()})
fun ints(N:Int):Array<Int> = Array(N,{scan.nextInt()})
fun longs(N:Int):Array<Long> = Array(N,{scan.nextLong()})
0