結果
問題 | No.438 Cwwプログラミング入門 |
ユーザー | aru aru |
提出日時 | 2021-01-03 11:29:12 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,949 bytes |
コンパイル時間 | 11,636 ms |
コンパイル使用メモリ | 226,072 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 04:44:51 |
合計ジャッジ時間 | 21,173 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 1 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 1 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 1 ms
5,248 KB |
testcase_24 | AC | 1 ms
5,248 KB |
testcase_25 | AC | 1 ms
5,248 KB |
testcase_26 | WA | - |
testcase_27 | AC | 1 ms
5,248 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 1 ms
5,248 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
5,248 KB |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 1 ms
5,248 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | AC | 2 ms
5,248 KB |
testcase_51 | AC | 2 ms
5,248 KB |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | AC | 1 ms
5,248 KB |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | AC | 1 ms
5,248 KB |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | AC | 1 ms
5,248 KB |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | AC | 1 ms
5,248 KB |
testcase_66 | WA | - |
testcase_67 | AC | 1 ms
5,248 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 | 1 ms
5,248 KB |
testcase_79 | AC | 1 ms
5,248 KB |
testcase_80 | AC | 2 ms
5,248 KB |
testcase_81 | AC | 1 ms
5,248 KB |
testcase_82 | AC | 2 ms
5,248 KB |
testcase_83 | AC | 1 ms
5,248 KB |
testcase_84 | AC | 2 ms
5,248 KB |
testcase_85 | AC | 1 ms
5,248 KB |
testcase_86 | AC | 1 ms
5,248 KB |
testcase_87 | AC | 1 ms
5,248 KB |
testcase_88 | RE | - |
testcase_89 | WA | - |
testcase_90 | AC | 1 ms
5,248 KB |
testcase_91 | RE | - |
testcase_92 | RE | - |
testcase_93 | RE | - |
testcase_94 | RE | - |
testcase_95 | AC | 2 ms
5,248 KB |
testcase_96 | AC | 2 ms
5,248 KB |
testcase_97 | WA | - |
testcase_98 | AC | 2 ms
5,248 KB |
testcase_99 | AC | 1 ms
5,248 KB |
testcase_100 | WA | - |
ソースコード
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') } for i := 0; i < abs(A)-1; i++ { if A < 0 { as = append(as, 'W') } else { as = append(as, 'C') } } bs := make([]byte, 0) for i := 0; i < abs(B); i++ { bs = append(bs, 'w') } for i := 0; i < abs(B)-1; i++ { if B < 0 { bs = append(bs, 'W') } else { bs = append(bs, 'C') } } if A == 0 { as = bs } else if B == 0 { } else if A < 0 { as = append(bs, as...) } else { as = append(as, bs...) } as = append(as, 'C') if len(as) > 10000 { out("NO") return } out(string(as)) }