結果

問題 No.438 Cwwプログラミング入門
ユーザー aru aruaru aru
提出日時 2021-01-03 10:47:03
言語 Go
(1.21.3)
結果
WA  
実行時間 -
コード長 2,399 bytes
コンパイル時間 12,471 ms
コンパイル使用メモリ 209,388 KB
実行使用メモリ 20,120 KB
最終ジャッジ日時 2023-08-03 06:23:41
合計ジャッジ時間 24,586 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

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

ソースコード

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
}

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()

	g, a, b := extGCD(x, y)
	// out(a, b, g, z)
	if z%g != 0 {
		out("NO")
		return
	}

	as, bs := byte('c'), byte('w')
	if a < b {
		as, bs = bs, as
	}
	n := z / g

	if n > 10000 {
		out("NO")
		return
	}
	s := make([]byte, 0)
	for i := 0; i < n; i++ {
		for j := 0; j < abs(a); j++ {
			s = append(s, as)
		}
		for j := 0; j < abs(a)-1; j++ {
			s = append(s, 'C')
		}
		for j := 0; j < abs(b); j++ {
			s = append(s, bs)
		}
		for j := 0; j < abs(b)-1; j++ {
			s = append(s, 'C')
		}
		if abs(b) != 0 {
			if b > 0 {
				s = append(s, 'W')
			} else {
				s = append(s, 'C')
			}
		}
		// out(string(s))
	}
	for i := 0; i < n-1; i++ {
		s = append(s, 'C')
	}
	out(string(s))
}
0