結果
問題 | No.353 ヘイトプラス |
ユーザー | mochi8k |
提出日時 | 2016-07-27 00:37:57 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 129 bytes |
コンパイル時間 | 12,200 ms |
コンパイル使用メモリ | 223,056 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 17:13:26 |
合計ジャッジ時間 | 12,559 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | WA | - |
ソースコード
package main import ( "fmt" "math" ) func main() { var a, b int fmt.Scan(&a, &b) fmt.Println(math.Abs(float64(-a - b))) }