結果

問題 No.89 どんどんドーナツどーんといこう!
ユーザー d_nishiyama85d_nishiyama85
提出日時 2016-09-28 00:00:59
言語 Kotlin
(2.1.0)
結果
AC  
実行時間 349 ms / 5,000 ms
コード長 345 bytes
コンパイル時間 10,601 ms
コンパイル使用メモリ 432,296 KB
実行使用メモリ 55,312 KB
最終ジャッジ日時 2024-11-20 07:12:54
合計ジャッジ時間 15,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
55,152 KB
testcase_01 AC 344 ms
55,312 KB
testcase_02 AC 349 ms
55,304 KB
testcase_03 AC 343 ms
55,144 KB
testcase_04 AC 345 ms
55,228 KB
testcase_05 AC 346 ms
55,132 KB
testcase_06 AC 343 ms
55,136 KB
testcase_07 AC 345 ms
55,244 KB
testcase_08 AC 342 ms
55,240 KB
testcase_09 AC 342 ms
55,240 KB
testcase_10 AC 343 ms
55,264 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 cin = Scanner(System.`in`)
    val C  : Int = cin.nextInt()
    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