結果

問題 No.3072 Sum of sqrt(x)
ユーザー matsumomatsumo
提出日時 2020-11-14 22:57:04
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 14,169 ms
コンパイル使用メモリ 434,200 KB
実行使用メモリ 89,776 KB
最終ジャッジ日時 2024-07-23 00:56:08
合計ジャッジ時間 61,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
49,920 KB
testcase_01 AC 287 ms
49,876 KB
testcase_02 AC 289 ms
49,736 KB
testcase_03 AC 288 ms
49,904 KB
testcase_04 AC 294 ms
49,764 KB
testcase_05 AC 286 ms
49,620 KB
testcase_06 AC 287 ms
49,644 KB
testcase_07 WA -
testcase_08 AC 635 ms
79,552 KB
testcase_09 AC 843 ms
82,792 KB
testcase_10 AC 972 ms
83,432 KB
testcase_11 OLE -
testcase_12 OLE -
testcase_13 OLE -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 OLE -
testcase_20 OLE -
testcase_21 OLE -
testcase_22 OLE -
testcase_23 OLE -
testcase_24 OLE -
testcase_25 OLE -
testcase_26 OLE -
testcase_27 OLE -
testcase_28 WA -
testcase_29 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader
import java.io.InputStreamReader
import java.io.PrintWriter
import kotlin.math.sqrt

val br = BufferedReader(InputStreamReader(System.`in`))
val out = PrintWriter(System.out)

fun main() {
    br.use {
        out.use {
//        repeat(readInteger()) { solve() }
            solve()
            out.flush()
        }
    }
}

fun solve() {
    val n = readInteger()
    var ans = 0.0
    repeat(n) {
        val x = sqrt(readLong().toDouble())
        ans += x
        out.println(ans)
    }
}

fun readInteger() = Integer.parseInt(br.readLine())
fun readLong() = java.lang.Long.parseLong(br.readLine())
fun readStringList() = br.readLine()!!.split(' ')
fun readIntegerList() = readStringList().map(Integer::parseInt)
fun readLongList() = readStringList().map(java.lang.Long::parseLong)
fun readDoubleList() = readStringList().map(java.lang.Double::parseDouble)
0