結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー バカらっくバカらっく
提出日時 2019-09-27 09:27:51
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 304 ms / 5,000 ms
コード長 239 bytes
コンパイル時間 10,880 ms
コンパイル使用メモリ 437,796 KB
実行使用メモリ 57,104 KB
最終ジャッジ日時 2024-09-24 06:49:09
合計ジャッジ時間 14,961 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
56,852 KB
testcase_01 AC 294 ms
56,944 KB
testcase_02 AC 296 ms
57,000 KB
testcase_03 AC 304 ms
57,104 KB
testcase_04 AC 297 ms
56,912 KB
testcase_05 AC 300 ms
56,996 KB
testcase_06 AC 298 ms
56,860 KB
testcase_07 AC 295 ms
56,972 KB
testcase_08 AC 295 ms
56,852 KB
testcase_09 AC 296 ms
56,784 KB
testcase_10 AC 300 ms
56,840 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

import kotlin.math.PI


fun main(arr:Array<String>) {
    val cal = readLine()!!.toInt()
    val (inR, outR) = readLine()!!.split(" ").map { it.toInt() }
    var ans = PI * PI / 4 * (inR+outR)*(outR-inR)*(outR-inR)
    println(ans*cal)
}

0