結果

問題 No.438 Cwwプログラミング入門
ユーザー aru aruaru aru
提出日時 2021-01-03 11:42:49
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 3,225 bytes
コンパイル時間 12,471 ms
コンパイル使用メモリ 209,016 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-03 07:21:57
合計ジャッジ時間 20,041 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 1 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,376 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 2 ms
4,376 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 1 ms
4,376 KB
testcase_29 AC 1 ms
4,376 KB
testcase_30 AC 1 ms
4,376 KB
testcase_31 AC 1 ms
4,376 KB
testcase_32 AC 1 ms
4,380 KB
testcase_33 AC 1 ms
4,376 KB
testcase_34 WA -
testcase_35 AC 2 ms
4,376 KB
testcase_36 AC 1 ms
4,376 KB
testcase_37 AC 2 ms
4,376 KB
testcase_38 AC 2 ms
4,380 KB
testcase_39 AC 2 ms
4,376 KB
testcase_40 AC 1 ms
4,380 KB
testcase_41 AC 1 ms
4,376 KB
testcase_42 AC 2 ms
4,380 KB
testcase_43 AC 1 ms
4,380 KB
testcase_44 AC 2 ms
4,380 KB
testcase_45 AC 1 ms
4,380 KB
testcase_46 AC 1 ms
4,376 KB
testcase_47 AC 1 ms
4,380 KB
testcase_48 AC 1 ms
4,376 KB
testcase_49 AC 2 ms
4,380 KB
testcase_50 AC 1 ms
4,380 KB
testcase_51 AC 2 ms
4,376 KB
testcase_52 AC 2 ms
4,376 KB
testcase_53 AC 2 ms
4,380 KB
testcase_54 AC 2 ms
4,380 KB
testcase_55 AC 1 ms
4,380 KB
testcase_56 AC 2 ms
4,376 KB
testcase_57 AC 2 ms
4,376 KB
testcase_58 AC 1 ms
4,376 KB
testcase_59 AC 1 ms
4,376 KB
testcase_60 AC 1 ms
4,376 KB
testcase_61 AC 1 ms
4,380 KB
testcase_62 AC 2 ms
4,376 KB
testcase_63 AC 2 ms
4,376 KB
testcase_64 AC 2 ms
4,380 KB
testcase_65 AC 1 ms
4,376 KB
testcase_66 AC 1 ms
4,380 KB
testcase_67 AC 1 ms
4,380 KB
testcase_68 WA -
testcase_69 AC 1 ms
4,380 KB
testcase_70 AC 2 ms
4,380 KB
testcase_71 AC 1 ms
4,380 KB
testcase_72 AC 1 ms
4,376 KB
testcase_73 AC 2 ms
4,376 KB
testcase_74 AC 2 ms
4,376 KB
testcase_75 AC 1 ms
4,380 KB
testcase_76 WA -
testcase_77 AC 1 ms
4,380 KB
testcase_78 AC 1 ms
4,380 KB
testcase_79 AC 1 ms
4,376 KB
testcase_80 AC 2 ms
4,380 KB
testcase_81 AC 2 ms
4,376 KB
testcase_82 AC 2 ms
4,376 KB
testcase_83 AC 1 ms
4,376 KB
testcase_84 AC 2 ms
4,380 KB
testcase_85 AC 2 ms
4,380 KB
testcase_86 AC 1 ms
4,376 KB
testcase_87 AC 1 ms
4,376 KB
testcase_88 RE -
testcase_89 AC 2 ms
4,380 KB
testcase_90 AC 1 ms
4,376 KB
testcase_91 RE -
testcase_92 RE -
testcase_93 RE -
testcase_94 RE -
testcase_95 AC 2 ms
4,380 KB
testcase_96 AC 1 ms
4,376 KB
testcase_97 AC 1 ms
4,380 KB
testcase_98 AC 1 ms
4,376 KB
testcase_99 AC 2 ms
4,380 KB
testcase_100 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

var sc = bufio.NewScanner(os.Stdin)
var wr = bufio.NewWriter(os.Stdout)

func out(x ...interface{}) {
	fmt.Fprintln(wr, x...)
}

func getI() int {
	sc.Scan()
	i, e := strconv.Atoi(sc.Text())
	if e != nil {
		panic(e)
	}
	return i
}

func getF() float64 {
	sc.Scan()
	i, e := strconv.ParseFloat(sc.Text(), 64)
	if e != nil {
		panic(e)
	}
	return i
}

func getInts(N int) []int {
	ret := make([]int, N)
	for i := 0; i < N; i++ {
		ret[i] = getI()
	}
	return ret
}

func getS() 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
}

// min for n entry
func nmin(a ...int) int {
	ret := a[0]
	for _, e := range a {
		ret = min(ret, e)
	}
	return ret
}

// max for n entry
func nmax(a ...int) int {
	ret := a[0]
	for _, e := range a {
		ret = max(ret, e)
	}
	return ret
}

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
func extGCD(a, b int) (int, int, int) {
	if b == 0 {
		return a, 1, 0
	}
	d, y, x := extGCD(b, a%b)
	y -= a / b * x
	return d, x, y
}

var x, y, z int

var memo map[int]bool

func rec(n, v int, s []byte) {
	if memo[v] == true {
		return
	}
	memo[v] = true
	if n > 10000 {
		return
	}
	if v > z {
		return
	}
	if v == z {
		out(string(s))
		wr.Flush()
		os.Exit(0)
	}
	rec(n+1, v+x, append(s, "cC"...))
	rec(n+1, v-x, append(s, "cW"...))
	rec(n+1, v+y, append(s, "wC"...))
	rec(n+1, v-y, append(s, "wW"...))
}

const inf = int(11000)

func main() {
	defer wr.Flush()
	sc.Split(bufio.ScanWords)
	sc.Buffer([]byte{}, 1000000)
	// this template is new version.
	// use getI(), getS(), getInts(), getF()
	x, y, z = getI(), getI(), getI()

	A, B := 0, 0
	mi := inf
	for a := -5000; a <= 5000; a++ {
		if (z-a*x)%y != 0 {
			continue
		}
		b := (z - a*x) / y
		if mi > abs(a)+abs(b) {
			mi = abs(a) + abs(b)
			A, B = a, b
		}
	}
	if mi == inf {
		out("NO")
		return
	}

	as := make([]byte, 0)
	for i := 0; i < abs(A); i++ {
		as = append(as, 'c')
	}
	ae := make([]byte, 0)
	for i := 0; i < abs(A)-1; i++ {
		if A < 0 {
			ae = append(ae, 'W')
		} else {
			ae = append(ae, 'C')
		}
	}

	bs := make([]byte, 0)
	for i := 0; i < abs(B); i++ {
		bs = append(bs, 'w')
	}
	be := make([]byte, 0)
	for i := 0; i < abs(B)-1; i++ {
		if B < 0 {
			be = append(be, 'W')
		} else {
			be = append(be, 'C')
		}
	}

	if A == 0 {
		as = append(bs, be...)
	} else if B == 0 {
		as = append(as, ae...)
	} else if A > 0 {
		as = append(bs, as...)
		as = append(as, ae...)
		as = append(as, be...)
		if B < 0 {
			as = append(as, 'W')
		} else {
			as = append(as, 'C')
		}
	} else {
		as = append(as, bs...)
		as = append(as, be...)
		as = append(as, ae...)
		as = append(as, 'W')
	}
	if len(as) > 10000 {
		out("NO")
		return
	}
	// out(x, y)
	out(string(as))
}
0