結果

問題 No.1200 お菓子配り-3
ユーザー ccppjsrbccppjsrb
提出日時 2020-08-29 16:10:02
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 1,958 bytes
コンパイル時間 14,963 ms
コンパイル使用メモリ 237,768 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-27 01:07:47
合計ジャッジ時間 41,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 4 ms
6,812 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 23 ms
6,944 KB
testcase_08 AC 23 ms
6,940 KB
testcase_09 AC 22 ms
6,940 KB
testcase_10 AC 23 ms
6,944 KB
testcase_11 AC 24 ms
6,948 KB
testcase_12 AC 208 ms
6,944 KB
testcase_13 AC 202 ms
6,940 KB
testcase_14 AC 205 ms
6,940 KB
testcase_15 AC 205 ms
6,944 KB
testcase_16 AC 203 ms
6,944 KB
testcase_17 AC 725 ms
6,940 KB
testcase_18 AC 1,043 ms
6,940 KB
testcase_19 AC 247 ms
6,944 KB
testcase_20 AC 2,024 ms
6,940 KB
testcase_21 AC 2,022 ms
6,940 KB
testcase_22 AC 2,361 ms
6,944 KB
testcase_23 AC 1,975 ms
6,940 KB
testcase_24 AC 1,967 ms
6,944 KB
testcase_25 AC 2,001 ms
6,944 KB
testcase_26 AC 1,984 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 3,357 ms
6,944 KB
testcase_29 AC 2,432 ms
6,940 KB
testcase_30 AC 2,432 ms
6,940 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

func configure(scanner *bufio.Scanner) {
	scanner.Split(bufio.ScanWords)
	scanner.Buffer(make([]byte, 1000005), 1000005)
}
func getNextString(scanner *bufio.Scanner) string {
	scanned := scanner.Scan()
	if !scanned {
		panic("scan failed")
	}
	return scanner.Text()
}
func getNextInt(scanner *bufio.Scanner) int {
	i, _ := strconv.Atoi(getNextString(scanner))
	return i
}
func getNextInt64(scanner *bufio.Scanner) int64 {
	i, _ := strconv.ParseInt(getNextString(scanner), 10, 64)
	return i
}
func getNextFloat64(scanner *bufio.Scanner) float64 {
	i, _ := strconv.ParseFloat(getNextString(scanner), 64)
	return i
}
func main() {
	fp := os.Stdin
	wfp := os.Stdout
	extra := 0
	if os.Getenv("I") == "IronMan" {
		fp, _ = os.Open(os.Getenv("END_GAME"))
		extra = 100
	}
	scanner := bufio.NewScanner(fp)
	configure(scanner)
	writer := bufio.NewWriter(wfp)
	defer func() {
		r := recover()
		if r != nil {
			fmt.Fprintln(writer, r)
		}
		writer.Flush()
	}()
	solve(scanner, writer)
	for i := 0; i < extra; i++ {
		fmt.Fprintln(writer, "-----------------------------------")
		solve(scanner, writer)
	}
}
func solve(scanner *bufio.Scanner, writer *bufio.Writer) {
	var testcase func()
	testcase = func() {
		var ans int64
		x := getNextInt(scanner)
		y := getNextInt(scanner)
		if x < y {
			x, y = y, x
		}
		p := x + y
		m := x - y
		for i := 1; i*i < p+1; i++ {
			if p%i != 0 {
				continue
			}
			ans += calc(p, m, i)
			if i != p/i {
				ans += calc(p, m, p/i)
			}
		}
		fmt.Fprintln(writer, ans)
	}
	s := getNextInt(scanner)
	for s > 0 {
		testcase()
		s--
	}
}

func calc(p, m, a int) int64 {
	if a == 1 {
		return 0
	}
	if a == 2 {
		if m == 0 {
			return int64(p / a)
		}
		return 0
	}
	bpc := p / a
	if m%(a-2) != 0 {
		return 0
	}
	bmc := m / (a - 2)
	b2 := bpc + bmc
	if b2 < 2 {
		return 0
	}
	if b2&1 == 1 {
		return 0
	}
	b := b2 >> 1
	c := b - bmc
	if c < 1 {
		return 0
	}
	return 1
}
0