結果
問題 | No.564 背の順 |
ユーザー | rky |
提出日時 | 2017-11-26 19:39:00 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 504 ms / 2,000 ms |
コード長 | 785 bytes |
コンパイル時間 | 14,118 ms |
コンパイル使用メモリ | 442,948 KB |
実行使用メモリ | 61,916 KB |
最終ジャッジ日時 | 2024-11-20 13:14:13 |
合計ジャッジ時間 | 21,202 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 483 ms
61,684 KB |
testcase_01 | AC | 474 ms
61,916 KB |
testcase_02 | AC | 504 ms
61,748 KB |
testcase_03 | AC | 468 ms
61,700 KB |
testcase_04 | AC | 457 ms
61,684 KB |
testcase_05 | AC | 469 ms
61,844 KB |
testcase_06 | AC | 465 ms
61,896 KB |
testcase_07 | AC | 455 ms
61,832 KB |
testcase_08 | AC | 474 ms
61,896 KB |
testcase_09 | AC | 469 ms
61,800 KB |
testcase_10 | AC | 480 ms
61,772 KB |
testcase_11 | AC | 487 ms
61,696 KB |
コンパイルメッセージ
Main.kt:22: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 listIndex = list.indexOf(nama) + 1 var rank = list.indexOf(nama).toString().split("") var ele = rank[rank.size - 2] if(ele == "0") println("${listIndex}st") else if(ele == "1") println("${listIndex}nd") else if(ele == "2") println("${listIndex}rd") else println("${listIndex}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) }