結果

問題 No.300 平方数
ユーザー javyjavy
提出日時 2015-11-13 23:49:14
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 1,149 bytes
コンパイル時間 10,804 ms
コンパイル使用メモリ 439,564 KB
実行使用メモリ 100,776 KB
最終ジャッジ日時 2024-11-19 21:58:01
合計ジャッジ時間 76,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 264 ms
53,344 KB
testcase_01 AC 259 ms
85,676 KB
testcase_02 TLE -
testcase_03 AC 259 ms
53,312 KB
testcase_04 AC 260 ms
57,808 KB
testcase_05 AC 257 ms
92,168 KB
testcase_06 AC 260 ms
54,864 KB
testcase_07 AC 262 ms
53,628 KB
testcase_08 AC 262 ms
57,880 KB
testcase_09 AC 257 ms
55,032 KB
testcase_10 AC 260 ms
99,972 KB
testcase_11 AC 258 ms
53,236 KB
testcase_12 AC 260 ms
85,688 KB
testcase_13 TLE -
testcase_14 AC 263 ms
99,972 KB
testcase_15 AC 257 ms
53,360 KB
testcase_16 TLE -
testcase_17 AC 257 ms
55,080 KB
testcase_18 AC 292 ms
100,340 KB
testcase_19 AC 524 ms
53,424 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

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 num = readLineLong()
    val min = Math.sqrt(num.toDouble()).toLong()
    for (i in min..Long.MAX_VALUE) {
        if (i*i < num) {
            continue
        } else if ((i*i) % num == 0.toLong()) {
            println((i*i) / num)
            break
        }
    }
}
0