結果

問題 No.69 文字を自由に並び替え
ユーザー バカらっくバカらっく
提出日時 2019-09-23 02:29:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 323 ms / 5,000 ms
コード長 155 bytes
コンパイル時間 10,053 ms
コンパイル使用メモリ 435,132 KB
実行使用メモリ 55,128 KB
最終ジャッジ日時 2024-09-19 04:10:25
合計ジャッジ時間 16,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
54,868 KB
testcase_01 AC 315 ms
54,876 KB
testcase_02 AC 306 ms
55,116 KB
testcase_03 AC 303 ms
54,968 KB
testcase_04 AC 300 ms
54,988 KB
testcase_05 AC 306 ms
54,952 KB
testcase_06 AC 303 ms
55,088 KB
testcase_07 AC 309 ms
55,120 KB
testcase_08 AC 304 ms
55,088 KB
testcase_09 AC 308 ms
55,060 KB
testcase_10 AC 315 ms
55,000 KB
testcase_11 AC 319 ms
55,012 KB
testcase_12 AC 319 ms
55,128 KB
testcase_13 AC 323 ms
55,108 KB
testcase_14 AC 323 ms
55,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    print(if((1..2).map { readLine()!!.toCharArray().sorted().joinToString("") }.let { it[0] == it[1] }) "YES" else "NO")

}
0