結果

問題 No.4 おもりと天秤
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-23 15:48:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 704 bytes
コンパイル時間 2,439 ms
コンパイル使用メモリ 75,252 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-05-03 04:48:37
合計ジャッジ時間 6,536 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,248 KB
testcase_01 AC 119 ms
40,300 KB
testcase_02 AC 131 ms
41,524 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 140 ms
41,340 KB
testcase_06 AC 132 ms
41,292 KB
testcase_07 AC 138 ms
41,288 KB
testcase_08 AC 139 ms
41,328 KB
testcase_09 AC 143 ms
41,420 KB
testcase_10 AC 139 ms
41,416 KB
testcase_11 AC 132 ms
41,212 KB
testcase_12 AC 118 ms
40,236 KB
testcase_13 AC 131 ms
41,412 KB
testcase_14 AC 132 ms
41,296 KB
testcase_15 AC 132 ms
41,288 KB
testcase_16 AC 119 ms
40,276 KB
testcase_17 WA -
testcase_18 AC 144 ms
41,696 KB
testcase_19 AC 133 ms
41,456 KB
testcase_20 AC 141 ms
41,440 KB
testcase_21 AC 139 ms
41,268 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		
		// your code goes here
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int w[] = new int[n];
		for (int j = 0; j < n; j++) {
			w[j] = sc.nextInt();
		}
		sc.close();
		
		Arrays.sort(w);
		int sum1 = w[n-1];
		int sum2 = 0;
		for (int i = 1; i < n;i++) {
			if (sum1 < sum2) {
				sum1 += w[n-1-i];
			} else {
				sum2 += w[n-1-i];
			}
		}
		System.out.println((sum1 == sum2) ? "possible" : "impossible");
	}
}
0