結果

問題 No.4 おもりと天秤
ユーザー DAZYDAZY
提出日時 2017-05-22 15:16:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 3,445 ms
コンパイル使用メモリ 75,384 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-09-19 09:46:31
合計ジャッジ時間 7,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,280 KB
testcase_01 AC 121 ms
41,320 KB
testcase_02 AC 115 ms
41,456 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 123 ms
41,328 KB
testcase_06 AC 112 ms
41,328 KB
testcase_07 AC 129 ms
41,924 KB
testcase_08 AC 119 ms
41,828 KB
testcase_09 AC 121 ms
41,544 KB
testcase_10 AC 128 ms
41,500 KB
testcase_11 AC 105 ms
41,064 KB
testcase_12 AC 104 ms
41,280 KB
testcase_13 AC 102 ms
41,152 KB
testcase_14 AC 115 ms
41,552 KB
testcase_15 AC 129 ms
41,340 KB
testcase_16 AC 119 ms
41,120 KB
testcase_17 WA -
testcase_18 AC 126 ms
41,116 KB
testcase_19 AC 129 ms
41,536 KB
testcase_20 AC 125 ms
41,472 KB
testcase_21 AC 125 ms
41,668 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No4 {
    public static void main (String[] args) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int W[] = new int[N];
        for (int i = 0; i < N; i++) W[i] = scan.nextInt();
        Arrays.sort(W);
        int left = W[N-1], right = W[N-2];
        for (int i = N-3; i >= 0; i--) {
            if (left > right) right += W[i];
            else left += W[i];
        }
        if (left == right) System.out.println("possible");
        else  System.out.println("impossible");
    }
}
0