結果
問題 | No.1017 Reiwa Sequence |
ユーザー | aru aru |
提出日時 | 2020-10-31 21:28:37 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 1,183 ms / 2,000 ms |
コード長 | 1,978 bytes |
コンパイル時間 | 13,902 ms |
コンパイル使用メモリ | 233,612 KB |
実行使用メモリ | 120,948 KB |
最終ジャッジ日時 | 2024-07-22 05:25:27 |
合計ジャッジ時間 | 59,251 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 5 ms
6,812 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 12 ms
13,784 KB |
testcase_10 | AC | 177 ms
32,648 KB |
testcase_11 | AC | 10 ms
11,812 KB |
testcase_12 | AC | 1,124 ms
119,308 KB |
testcase_13 | AC | 1,114 ms
117,804 KB |
testcase_14 | AC | 13 ms
11,388 KB |
testcase_15 | AC | 22 ms
14,084 KB |
testcase_16 | AC | 14 ms
11,784 KB |
testcase_17 | AC | 38 ms
23,668 KB |
testcase_18 | AC | 13 ms
11,592 KB |
testcase_19 | AC | 190 ms
48,656 KB |
testcase_20 | AC | 193 ms
48,044 KB |
testcase_21 | AC | 196 ms
49,652 KB |
testcase_22 | AC | 193 ms
48,252 KB |
testcase_23 | AC | 183 ms
47,868 KB |
testcase_24 | AC | 189 ms
46,944 KB |
testcase_25 | AC | 180 ms
45,840 KB |
testcase_26 | AC | 165 ms
43,708 KB |
testcase_27 | AC | 193 ms
49,788 KB |
testcase_28 | AC | 187 ms
47,820 KB |
testcase_29 | AC | 186 ms
47,532 KB |
testcase_30 | AC | 187 ms
47,580 KB |
testcase_31 | AC | 174 ms
42,884 KB |
testcase_32 | AC | 169 ms
39,536 KB |
testcase_33 | AC | 146 ms
29,544 KB |
testcase_34 | AC | 183 ms
47,452 KB |
testcase_35 | AC | 154 ms
47,388 KB |
testcase_36 | AC | 174 ms
47,392 KB |
testcase_37 | AC | 182 ms
44,728 KB |
testcase_38 | AC | 173 ms
44,660 KB |
testcase_39 | AC | 185 ms
44,672 KB |
testcase_40 | AC | 1,166 ms
118,744 KB |
testcase_41 | AC | 1,140 ms
117,180 KB |
testcase_42 | AC | 1,183 ms
120,588 KB |
testcase_43 | AC | 1,153 ms
117,772 KB |
testcase_44 | AC | 572 ms
103,880 KB |
testcase_45 | AC | 1,098 ms
115,788 KB |
testcase_46 | AC | 1,035 ms
114,584 KB |
testcase_47 | AC | 905 ms
112,376 KB |
testcase_48 | AC | 1,160 ms
115,724 KB |
testcase_49 | AC | 542 ms
106,696 KB |
testcase_50 | AC | 563 ms
120,948 KB |
testcase_51 | AC | 5 ms
6,944 KB |
testcase_52 | AC | 177 ms
51,964 KB |
testcase_53 | AC | 167 ms
51,972 KB |
ソースコード
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 } const maxV = 150000*22 + 1 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([][]int, maxV) nn := 1 << n for i := 0; i < nn; i++ { tot := 0 for k := 0; k < n; k++ { if (i>>k)&1 == 1 { tot += a[k] } } m[tot] = append(m[tot], i) } for i := 0; i < maxV; i++ { 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") }