結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,048 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 138 ms
41,628 KB
testcase_04 AC 140 ms
41,812 KB
testcase_05 AC 148 ms
41,404 KB
testcase_06 WA -
testcase_07 AC 146 ms
41,568 KB
testcase_08 WA -
testcase_09 AC 146 ms
41,316 KB
testcase_10 AC 144 ms
41,488 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 137 ms
41,588 KB
testcase_17 AC 140 ms
41,220 KB
testcase_18 WA -
testcase_19 AC 144 ms
41,356 KB
testcase_20 AC 146 ms
41,356 KB
testcase_21 AC 139 ms
41,256 KB
testcase_22 AC 139 ms
41,536 KB
権限があれば一括ダウンロードができます

ソースコード

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
	{
		int w[] = new int[1000];
		// your code goes here
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		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