結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー d_nishiyama85d_nishiyama85
提出日時 2016-09-27 23:56:30
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 352 ms / 5,000 ms
コード長 345 bytes
コンパイル時間 11,501 ms
コンパイル使用メモリ 429,620 KB
実行使用メモリ 51,480 KB
最終ジャッジ日時 2024-11-20 07:11:14
合計ジャッジ時間 15,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
51,480 KB
testcase_01 AC 347 ms
51,316 KB
testcase_02 AC 348 ms
51,152 KB
testcase_03 AC 347 ms
51,212 KB
testcase_04 AC 349 ms
51,236 KB
testcase_05 AC 348 ms
51,152 KB
testcase_06 AC 346 ms
51,132 KB
testcase_07 AC 349 ms
51,080 KB
testcase_08 AC 346 ms
51,316 KB
testcase_09 AC 350 ms
51,152 KB
testcase_10 AC 352 ms
51,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {

    val C = readLine()!!.toInt()
    val cin = Scanner(System.`in`)
    val R1 : Int = cin.nextInt()
    val R2 : Int = cin.nextInt()

    val S : Double = Math.PI * (R2 - R1) * (R2 - R1) / 4
    val V : Double = 2 * Math.PI * (R1 + R2) / 2 * S
    val Cal : Double = V * C
    println(Cal)
}
0