結果
| 問題 |
No.419 直角三角形
|
| コンテスト | |
| ユーザー |
💕💖💞
|
| 提出日時 | 2016-09-10 00:24:40 |
| 言語 | Go (1.23.4) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 640 bytes |
| コンパイル時間 | 15,324 ms |
| コンパイル使用メモリ | 220,296 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-16 19:05:30 |
| 合計ジャッジ時間 | 16,267 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
package main
import (
"bufio"
"fmt"
"os"
"strconv"
"strings"
"math"
)
func main() {
scanner := bufio.NewScanner(os.Stdin)
holder := []float64{}
th := 0
for scanner.Scan() {
th += 1
text := scanner.Text()
for _, x2 := range strings.Split(text, " ") {
x3, e := strconv.ParseFloat(x2, 64)
_ = e
holder = append(holder, x3)
}
if th == 1 { break }
}
a, b := holder[0], holder[1]
if a != b {
fmt.Printf("%10.20f", math.Pow(math.Abs(math.Pow(a, 2) - math.Pow(b, 2)), 0.5) )
fmt.Println()
}else {
fmt.Printf("%10.20f", math.Pow(math.Abs(math.Pow(a, 2) + math.Pow(b, 2)), 0.5) )
fmt.Println()
}
}
💕💖💞