結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | javy |
提出日時 | 2015-11-28 10:38:56 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 326 ms / 2,000 ms |
コード長 | 1,798 bytes |
コンパイル時間 | 11,881 ms |
コンパイル使用メモリ | 453,348 KB |
実行使用メモリ | 57,236 KB |
最終ジャッジ日時 | 2024-11-20 06:18:05 |
合計ジャッジ時間 | 16,346 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 276 ms
56,876 KB |
testcase_01 | AC | 277 ms
56,616 KB |
testcase_02 | AC | 273 ms
56,716 KB |
testcase_03 | AC | 273 ms
56,720 KB |
testcase_04 | AC | 274 ms
56,828 KB |
testcase_05 | AC | 318 ms
57,032 KB |
testcase_06 | AC | 312 ms
57,236 KB |
testcase_07 | AC | 304 ms
56,916 KB |
testcase_08 | AC | 326 ms
57,040 KB |
testcase_09 | AC | 315 ms
57,060 KB |
testcase_10 | AC | 286 ms
56,528 KB |
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^
ソースコード
package Yukicoder /** * Created by hichikawa on 2015/11/12. */ 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 readLineInt(): Int { val str = readLine() as String return str.toInt() } fun readLineIntArray() : List<Int> { val str = readLine() as String val arrStr = str.split(" ") val ret = arrStr.map { it.toInt() } return ret } fun readLineDoubleArray(): List<Double> { val str = readLine() as String val arrStr = str.split(" ") val ret = arrStr.map { it.toDouble() } return ret } fun readLineDouble() : Double { val str = readLine() as String return str.toDouble() } fun calcNsinsu(str : String) : Int { val strList = "ZYXWVUTSRQPONMLKJIHGFEDCBA9876543210" for ((i, ch) in strList.withIndex()) { if (str.indexOf(ch) != -1) { return (36-i) } } return -1 } fun calcNum (str: String , shinsu : Int) : Long { val strList = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" var ret : Long = 0 for (ch in str) { ret *= shinsu ret += strList.indexOf(ch) } return ret } val num = readLineInt() var minValue = Long.MAX_VALUE for (i in 1..num) { val tmpS = readLine() as String val tmp = calcNum(tmpS, calcNsinsu(tmpS)) if (minValue > tmp) { minValue = tmp } } println(minValue) }