結果
問題 | No.80 四角形を描こう |
ユーザー | ichyo |
提出日時 | 2014-11-27 23:31:50 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 444 bytes |
コンパイル時間 | 12,509 ms |
コンパイル使用メモリ | 229,876 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 02:35:41 |
合計ジャッジ時間 | 13,358 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
package main import ( "fmt" "math" ) func main() { var d int fmt.Scanf("%d", &d) var a int a = int(math.Sqrt(float64(d) / 2.0)) ans := 0 for dx := -10; dx <= 10; dx++ { for dy := -10; dy <= 10; dy++ { x := a + dx y := a + dy if x < 0 { continue } if y < 0 { continue } if 2*(x+y) > d { continue } if ans < x*y { ans = x * y } } } fmt.Println(ans) }