結果
問題 | No.69 文字を自由に並び替え |
ユーザー | javy |
提出日時 | 2015-11-02 23:59:06 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 343 ms / 5,000 ms |
コード長 | 714 bytes |
コンパイル時間 | 11,606 ms |
コンパイル使用メモリ | 431,116 KB |
実行使用メモリ | 53,384 KB |
最終ジャッジ日時 | 2024-11-19 15:11:34 |
合計ジャッジ時間 | 16,692 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 325 ms
52,976 KB |
testcase_01 | AC | 320 ms
53,160 KB |
testcase_02 | AC | 343 ms
53,016 KB |
testcase_03 | AC | 318 ms
53,204 KB |
testcase_04 | AC | 323 ms
53,200 KB |
testcase_05 | AC | 320 ms
53,092 KB |
testcase_06 | AC | 319 ms
53,256 KB |
testcase_07 | AC | 313 ms
53,336 KB |
testcase_08 | AC | 317 ms
53,104 KB |
testcase_09 | AC | 318 ms
53,200 KB |
testcase_10 | AC | 316 ms
53,384 KB |
testcase_11 | AC | 318 ms
53,076 KB |
testcase_12 | AC | 317 ms
53,300 KB |
testcase_13 | AC | 312 ms
53,080 KB |
testcase_14 | AC | 310 ms
53,148 KB |
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
package Yukicoder /** * Created by hichikawa on 2015/11/02. */ fun main(args: Array<String>) { fun readLineLongArray() : List<Long> { val str = readLine() as String val arrStr = str.split(" ") val ret = arrStr.map { it.toLong() } return ret } fun readLineLong() : Long { val str = readLine() as String return str.toLong() } fun readLineStringSorted() : List<Char> { val str = readLine() as String return str.toCharArray().sorted() } val inputStr1 = readLineStringSorted() val inputStr2 = readLineStringSorted() if (inputStr1.equals(inputStr2)) { println("YES") } else { println("NO") } }