結果
問題 | No.1017 Reiwa Sequence |
ユーザー | aru aru |
提出日時 | 2020-10-31 14:12:16 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,007 bytes |
コンパイル時間 | 10,199 ms |
コンパイル使用メモリ | 235,512 KB |
実行使用メモリ | 338,604 KB |
最終ジャッジ日時 | 2024-07-22 04:58:48 |
合計ジャッジ時間 | 25,956 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 43 ms
13,184 KB |
testcase_13 | AC | 99 ms
23,680 KB |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | AC | 17 ms
7,168 KB |
testcase_16 | AC | 5 ms
5,376 KB |
testcase_17 | AC | 112 ms
23,680 KB |
testcase_18 | AC | 8 ms
5,376 KB |
testcase_19 | AC | 1,472 ms
169,104 KB |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
ソースコード
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 } var N int var a []int var b []int type pair struct { n, val int } var m = make(map[pair]bool) func rec(i, val, cnt, rest int) { if i > 22 { return } if rest < abs(val) { return } if m[pair{i, val}] { return } if cnt != 0 && val == 0 { out("Yes") for i := 0; i < N; i++ { fmt.Fprint(wr, a[i]*b[i], " ") } fmt.Fprintln(wr) wr.Flush() os.Exit(0) } if i == N { return } b[i] = 1 rec(i+1, val+a[i], cnt+1, rest-a[i]) b[i] = 0 rec(i+1, val, cnt, rest-a[i]) b[i] = -1 rec(i+1, val-a[i], cnt+1, rest-a[i]) b[i] = 0 m[pair{i, val}] = true } 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) b = make([]int, N) as := 0 for i := 0; i < N; i++ { as += a[i] } rec(0, 0, 0, as) out("No") }