結果
問題 | No.1017 Reiwa Sequence |
ユーザー | aru aru |
提出日時 | 2020-10-31 21:14:02 |
言語 | Go (1.22.1) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,974 bytes |
コンパイル時間 | 13,553 ms |
コンパイル使用メモリ | 233,676 KB |
実行使用メモリ | 306,424 KB |
最終ジャッジ日時 | 2024-07-22 05:20:19 |
合計ジャッジ時間 | 72,133 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 234 ms
55,240 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1,933 ms
246,652 KB |
testcase_13 | AC | 1,879 ms
246,912 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 3 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 8 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 390 ms
88,720 KB |
testcase_20 | AC | 397 ms
88,700 KB |
testcase_21 | AC | 398 ms
88,640 KB |
testcase_22 | AC | 395 ms
88,656 KB |
testcase_23 | AC | 382 ms
83,504 KB |
testcase_24 | AC | 378 ms
83,636 KB |
testcase_25 | AC | 377 ms
88,672 KB |
testcase_26 | AC | 378 ms
88,672 KB |
testcase_27 | AC | 338 ms
88,644 KB |
testcase_28 | AC | 331 ms
83,612 KB |
testcase_29 | AC | 357 ms
87,816 KB |
testcase_30 | AC | 354 ms
87,692 KB |
testcase_31 | AC | 345 ms
89,208 KB |
testcase_32 | AC | 362 ms
87,932 KB |
testcase_33 | AC | 234 ms
53,244 KB |
testcase_34 | AC | 237 ms
53,156 KB |
testcase_35 | AC | 223 ms
53,240 KB |
testcase_36 | AC | 232 ms
53,160 KB |
testcase_37 | AC | 356 ms
88,320 KB |
testcase_38 | AC | 319 ms
86,324 KB |
testcase_39 | AC | 322 ms
88,440 KB |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | AC | 718 ms
133,508 KB |
testcase_45 | AC | 1,993 ms
286,896 KB |
testcase_46 | TLE | - |
testcase_47 | AC | 1,891 ms
306,424 KB |
testcase_48 | AC | 1,758 ms
240,912 KB |
testcase_49 | AC | 690 ms
139,092 KB |
testcase_50 | AC | 688 ms
146,412 KB |
testcase_51 | AC | 2 ms
6,944 KB |
testcase_52 | AC | 329 ms
83,768 KB |
testcase_53 | AC | 326 ms
88,648 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) v := make([]int, 0) 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 = append(v, tot) } 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") }