結果
問題 | No.1017 Reiwa Sequence |
ユーザー | aru aru |
提出日時 | 2020-10-31 21:14:56 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,996 bytes |
コンパイル時間 | 11,799 ms |
コンパイル使用メモリ | 228,820 KB |
実行使用メモリ | 240,524 KB |
最終ジャッジ日時 | 2024-07-22 05:21:52 |
合計ジャッジ時間 | 69,159 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 8 ms
6,964 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 366 ms
86,688 KB |
testcase_20 | AC | 355 ms
88,704 KB |
testcase_21 | AC | 352 ms
86,672 KB |
testcase_22 | AC | 375 ms
86,728 KB |
testcase_23 | AC | 360 ms
86,692 KB |
testcase_24 | AC | 354 ms
88,720 KB |
testcase_25 | AC | 343 ms
88,704 KB |
testcase_26 | AC | 356 ms
88,716 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 1 ms
5,376 KB |
testcase_52 | WA | - |
testcase_53 | 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 } 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 } func main() { defer wr.Flush() sc.Split(bufio.ScanWords) sc.Buffer([]byte{}, 1000000) // this template is new version. // use getI(), getS(), getInts(), getF() N := getI() a := getInts(N) n := min(N, 22) m := make(map[int][]int) for i := 0; i < 1<<n; i++ { tot := 0 for k := 0; k < n; k++ { if (i>>k)&1 == 1 { tot += a[k] } } m[tot] = append(m[tot], i) } v := make([]int, 0) for i := range m { v = append(v, i) } for _, i := range v { if len(m[i]) > 1 { plus := m[i][0] minus := m[i][1] out("Yes") for k := 0; k < n; k++ { if (plus>>k)&1 == 1 { fmt.Fprint(wr, a[k], " ") continue } if (minus>>k)&1 == 1 { fmt.Fprint(wr, -a[k], " ") continue } fmt.Fprint(wr, 0, " ") } for k := n; k < N; k++ { fmt.Fprint(wr, 0, " ") } out() return } } out("No") }