結果
問題 | No.4 おもりと天秤 |
ユーザー | Takuya Ito |
提出日時 | 2023-12-08 15:21:35 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 557 bytes |
コンパイル時間 | 15,085 ms |
コンパイル使用メモリ | 239,192 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-27 02:49:44 |
合計ジャッジ時間 | 16,400 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
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 }