結果
問題 |
No.1178 Can you draw a Circle?
|
ユーザー |
|
提出日時 | 2020-08-21 21:58:33 |
言語 | Kotlin (2.1.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,059 bytes |
コンパイル時間 | 13,429 ms |
コンパイル使用メモリ | 438,416 KB |
実行使用メモリ | 49,820 KB |
最終ジャッジ日時 | 2024-11-07 13:52:07 |
合計ジャッジ時間 | 17,983 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 15 |
ソースコード
import java.io.BufferedReader import java.io.InputStream import java.io.InputStreamReader import java.io.PrintWriter import java.util.* fun PrintWriter.solve(sc: FastScanner) { val a = sc.nextInt() val b = sc.nextInt() val c = sc.nextInt() val d = sc.nextInt() val e = sc.nextInt() val f = sc.nextInt() val sq = (f - e + c * c / (4.0 * a) + d * d / (4.0 * b)) / a if (a != b) { println(Math.sqrt(sq)) } else { println(0) } } fun main() { val writer = PrintWriter(System.out, false) writer.solve(FastScanner(System.`in`)) writer.flush() } class FastScanner(s: InputStream) { private var st = StringTokenizer("") private val br = BufferedReader(InputStreamReader(s)) fun next(): String { while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine()) return st.nextToken() } fun nextInt() = next().toInt() fun nextLong() = next().toLong() fun nextLine() = br.readLine() fun nextDouble() = next().toDouble() fun ready() = br.ready() }