結果

問題 No.739 大事なことなので2度言います
ユーザー バカらっくバカらっく
提出日時 2022-02-14 10:01:45
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 12,483 ms
コンパイル使用メモリ 427,084 KB
実行使用メモリ 51,132 KB
最終ジャッジ日時 2024-06-29 06:07:56
合計ジャッジ時間 15,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 323 ms
51,008 KB
testcase_01 AC 315 ms
50,792 KB
testcase_02 AC 298 ms
49,716 KB
testcase_03 AC 313 ms
50,988 KB
testcase_04 AC 296 ms
49,628 KB
testcase_05 AC 314 ms
50,904 KB
testcase_06 AC 314 ms
50,960 KB
testcase_07 AC 299 ms
49,516 KB
testcase_08 AC 298 ms
49,712 KB
testcase_09 AC 318 ms
50,916 KB
testcase_10 AC 313 ms
51,132 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    println(if(getAns()) "YES" else "NO")
}

fun getAns():Boolean {
    val s = readLine()!!
    if(s.length % 2 != 0) {
        return false
    }
    return s.take(s.length/2) == s.drop(s.length/2)
}
0