結果

問題 No.4 おもりと天秤
ユーザー Takuya ItoTakuya Ito
提出日時 2023-12-08 15:21:35
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 13,613 ms
コンパイル使用メモリ 226,972 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-12-08 15:21:50
合計ジャッジ時間 12,994 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 1 ms
6,676 KB
testcase_02 AC 1 ms
6,676 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,676 KB
testcase_07 WA -
testcase_08 AC 1 ms
6,676 KB
testcase_09 AC 1 ms
6,676 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,676 KB
testcase_12 AC 1 ms
6,676 KB
testcase_13 AC 1 ms
6,676 KB
testcase_14 AC 1 ms
6,676 KB
testcase_15 AC 1 ms
6,676 KB
testcase_16 WA -
testcase_17 AC 1 ms
6,676 KB
testcase_18 AC 1 ms
6,676 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"sort"
)

func main() {
	var n int
	fmt.Scan(&n)

	weights := make([]int, n)
	for i := range weights {
		fmt.Scan(&weights[i])
	}

	fmt.Println(canMadeEqual(weights))
}

func canMadeEqual(weights []int) string {
	sort.Ints(weights)

	for i := 1; i <= len(weights)/2; i++ {
		larger := weights[len(weights)-i:]
		smaller := weights[:len(weights)-i]

		if sum(larger) == sum(smaller) {
			return "possible"
		}
	}

	return "impossible"
}

func sum(arr []int) int {
	sum := 0
	for _, v := range arr {
		sum += v
	}
	return sum
}
0