結果
問題 | No.152 貯金箱の消失 |
ユーザー | aru aru |
提出日時 | 2020-08-23 11:01:25 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 119 ms / 5,000 ms |
コード長 | 1,751 bytes |
コンパイル時間 | 12,498 ms |
コンパイル使用メモリ | 232,764 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 18:03:57 |
合計ジャッジ時間 | 13,576 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 18 ms
5,248 KB |
testcase_08 | AC | 119 ms
5,248 KB |
testcase_09 | AC | 118 ms
5,248 KB |
testcase_10 | AC | 92 ms
5,248 KB |
testcase_11 | AC | 49 ms
5,248 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) func out(x ...interface{}) { fmt.Println(x...) } var sc = bufio.NewScanner(os.Stdin) func getInt() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil { panic(e) } return i } func getInts(N int) []int { ret := make([]int, N) for i := 0; i < N; i++ { ret[i] = getInt() } return ret } func getString() string { sc.Scan() return sc.Text() } // min, max, asub, absなど基本関数 func max(a, b int) int { if a > b { return a } return b } func min(a, b int) int { if a < b { return a } return b } func asub(a, b int) int { if a > b { return a - b } return b - a } func abs(a int) int { if a >= 0 { return a } return -a } func lowerBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] >= x }) return idx } func upperBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] > x }) return idx } // GCD : greatest common divisor (GCD) via Euclidean algorithm func GCD(a, b int) int { for b != 0 { t := b b = a % b a = t } return a } func test() { L := getInt() l := L / 4 cnt := 0 for a := 1; a < l; a++ { for b := a + 1; b < l; b++ { for c := b + 1; c < l; c++ { x := GCD(a, GCD(b, c)) if x == 1 && a+b+c <= l && a*a+b*b == c*c { out(a, b, c) cnt++ } } } } out(cnt) } func main() { sc.Split(bufio.ScanWords) L := getInt() l := L / 4 cnt := 0 for n := 1; n*n <= l; n++ { for m := n; m*m <= l; m++ { if GCD(m, n) != 1 { continue } if (m-n)%2 != 1 { continue } a := m*m - n*n b := 2 * m * n c := m*m + n*n if a+b+c <= l { // out(a, b, c) cnt++ } } } out(cnt) }