結果

問題 No.69 文字を自由に並び替え
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-11-17 20:46:44
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 112 bytes
コンパイル時間 10,397 ms
コンパイル使用メモリ 424,284 KB
実行使用メモリ 57,772 KB
最終ジャッジ日時 2024-09-25 06:07:38
合計ジャッジ時間 15,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
57,680 KB
testcase_01 AC 303 ms
57,664 KB
testcase_02 AC 299 ms
57,612 KB
testcase_03 AC 305 ms
57,520 KB
testcase_04 AC 298 ms
57,596 KB
testcase_05 AC 303 ms
57,520 KB
testcase_06 AC 301 ms
57,524 KB
testcase_07 AC 301 ms
57,724 KB
testcase_08 AC 306 ms
57,488 KB
testcase_09 AC 302 ms
57,492 KB
testcase_10 AC 299 ms
57,520 KB
testcase_11 AC 299 ms
57,656 KB
testcase_12 AC 306 ms
57,492 KB
testcase_13 AC 301 ms
57,748 KB
testcase_14 AC 308 ms
57,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main(){println(if(readLine()!!.toCharArray().sorted()==readLine()!!.toCharArray().sorted())"YES" else "NO")}
0