結果
問題 | No.169 何分かかるの!? |
ユーザー | javy |
提出日時 | 2015-11-28 01:57:46 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 277 ms / 1,000 ms |
コード長 | 975 bytes |
コンパイル時間 | 11,366 ms |
コンパイル使用メモリ | 433,600 KB |
実行使用メモリ | 50,116 KB |
最終ジャッジ日時 | 2024-11-20 04:33:14 |
合計ジャッジ時間 | 19,125 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 262 ms
49,824 KB |
testcase_01 | AC | 265 ms
49,732 KB |
testcase_02 | AC | 260 ms
49,744 KB |
testcase_03 | AC | 261 ms
50,020 KB |
testcase_04 | AC | 265 ms
49,664 KB |
testcase_05 | AC | 261 ms
49,972 KB |
testcase_06 | AC | 271 ms
49,924 KB |
testcase_07 | AC | 277 ms
49,876 KB |
testcase_08 | AC | 263 ms
49,652 KB |
testcase_09 | AC | 262 ms
49,636 KB |
testcase_10 | AC | 267 ms
50,048 KB |
testcase_11 | AC | 265 ms
49,812 KB |
testcase_12 | AC | 267 ms
49,780 KB |
testcase_13 | AC | 266 ms
49,824 KB |
testcase_14 | AC | 264 ms
50,044 KB |
testcase_15 | AC | 255 ms
49,884 KB |
testcase_16 | AC | 261 ms
49,656 KB |
testcase_17 | AC | 264 ms
49,908 KB |
testcase_18 | AC | 262 ms
49,884 KB |
testcase_19 | AC | 261 ms
50,116 KB |
testcase_20 | AC | 265 ms
49,656 KB |
testcase_21 | AC | 266 ms
49,656 KB |
testcase_22 | AC | 264 ms
49,772 KB |
testcase_23 | AC | 260 ms
49,876 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 } val percent = readLineLong() val value = readLineLong() println(value*100/(100-percent)) }