結果
問題 | No.1017 Reiwa Sequence |
ユーザー | aru aru |
提出日時 | 2020-10-31 21:15:39 |
言語 | Go (1.22.1) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,010 bytes |
コンパイル時間 | 13,039 ms |
コンパイル使用メモリ | 230,884 KB |
実行使用メモリ | 239,856 KB |
最終ジャッジ日時 | 2024-07-22 05:23:25 |
合計ジャッジ時間 | 76,908 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 305 ms
53,204 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 1,998 ms
229,924 KB |
testcase_13 | TLE | - |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 3 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 11 ms
6,952 KB |
testcase_18 | AC | 3 ms
6,940 KB |
testcase_19 | AC | 479 ms
86,704 KB |
testcase_20 | AC | 483 ms
88,700 KB |
testcase_21 | AC | 487 ms
86,732 KB |
testcase_22 | AC | 495 ms
86,728 KB |
testcase_23 | AC | 484 ms
88,724 KB |
testcase_24 | AC | 482 ms
88,700 KB |
testcase_25 | AC | 481 ms
86,700 KB |
testcase_26 | AC | 485 ms
88,712 KB |
testcase_27 | AC | 434 ms
86,680 KB |
testcase_28 | AC | 441 ms
86,716 KB |
testcase_29 | AC | 431 ms
88,676 KB |
testcase_30 | AC | 428 ms
86,616 KB |
testcase_31 | AC | 435 ms
86,456 KB |
testcase_32 | AC | 430 ms
86,324 KB |
testcase_33 | AC | 308 ms
55,248 KB |
testcase_34 | AC | 297 ms
55,288 KB |
testcase_35 | AC | 291 ms
57,320 KB |
testcase_36 | AC | 289 ms
55,248 KB |
testcase_37 | AC | 419 ms
86,272 KB |
testcase_38 | AC | 411 ms
88,336 KB |
testcase_39 | AC | 421 ms
86,264 KB |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | AC | 634 ms
65,320 KB |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | AC | 1,934 ms
225,852 KB |
testcase_48 | AC | 1,772 ms
151,392 KB |
testcase_49 | AC | 605 ms
64,512 KB |
testcase_50 | AC | 587 ms
71,624 KB |
testcase_51 | AC | 1 ms
5,376 KB |
testcase_52 | AC | 424 ms
86,144 KB |
testcase_53 | AC | 425 ms
86,656 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 } 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) } sort.Ints(v) 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") }