結果
問題 | No.965 門松列が嫌い |
ユーザー | Tetsuya Ohira |
提出日時 | 2020-02-09 11:33:27 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 243 bytes |
コンパイル時間 | 11,502 ms |
コンパイル使用メモリ | 232,076 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-10-01 05:48:31 |
合計ジャッジ時間 | 11,029 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
ソースコード
package main import ( "fmt" "math" ) func main() { // 4 7 3 var a, b, c int fmt.Scan(&a, &b, &c) cal1 := float64(b - a) cal2 := float64(b - c) cal3 := math.Abs(float64(a - c)) fmt.Println(math.Min(math.Min(cal1, cal2), cal3)) }