結果
問題 | No.564 背の順 |
ユーザー | rky |
提出日時 | 2017-11-26 19:21:58 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 725 bytes |
コンパイル時間 | 11,948 ms |
コンパイル使用メモリ | 435,512 KB |
実行使用メモリ | 61,928 KB |
最終ジャッジ日時 | 2024-11-20 13:12:40 |
合計ジャッジ時間 | 17,949 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 411 ms
61,744 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 409 ms
61,544 KB |
testcase_05 | WA | - |
testcase_06 | AC | 420 ms
61,852 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 409 ms
61,648 KB |
testcase_10 | AC | 413 ms
61,616 KB |
testcase_11 | AC | 412 ms
61,724 KB |
コンパイルメッセージ
Main.kt:20:10: warning: parameter 'args' is never used fun main(args: Array<String>){ ^
ソースコード
import java.util.Scanner var input = Scanner(System. `in`) fun heightList(nama: Int, testCase: Int): MutableList<Int>{ var list: MutableList<Int> = mutableListOf(nama) for(i in 1..testCase - 1) list.add( input.nextInt() ) return list } fun result(list: MutableList<Int>, nama: Int){ list.sortBy{ it * -1} var ele = Integer.parseInt( (list.indexOf(nama).toString().split(""))[1] ) if(ele == 0) println("${ele + 1}st") else if(ele == 1) println("${ele + 1}nd") else if(ele == 2) println("${ele + 1}rd") else println("${ele + 1}th") } fun main(args: Array<String>){ var nama: Int = input.nextInt() var testCase: Int = input.nextInt() var list: MutableList<Int> = heightList(nama, testCase) result(list, nama) }