結果

問題 No.4 おもりと天秤
ユーザー fal_rndfal_rnd
提出日時 2017-01-20 18:49:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 398 bytes
コンパイル時間 3,126 ms
コンパイル使用メモリ 80,268 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-06-02 08:00:25
合計ジャッジ時間 6,839 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,756 KB
testcase_01 AC 125 ms
54,164 KB
testcase_02 AC 120 ms
53,948 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 129 ms
54,280 KB
testcase_06 AC 104 ms
53,032 KB
testcase_07 AC 123 ms
54,088 KB
testcase_08 AC 126 ms
54,184 KB
testcase_09 AC 128 ms
54,164 KB
testcase_10 AC 122 ms
53,688 KB
testcase_11 AC 119 ms
53,768 KB
testcase_12 AC 124 ms
53,920 KB
testcase_13 AC 125 ms
53,860 KB
testcase_14 AC 115 ms
53,756 KB
testcase_15 AC 121 ms
54,116 KB
testcase_16 AC 111 ms
52,652 KB
testcase_17 WA -
testcase_18 AC 126 ms
54,160 KB
testcase_19 AC 130 ms
53,896 KB
testcase_20 AC 128 ms
54,388 KB
testcase_21 AC 126 ms
54,240 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package src;

import java.util.*;
public class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int a=0,b=0;
		int[] in = new int[s.nextInt()];
		for(int i=0;i<in.length;i++) in[i]=s.nextInt();
		Arrays.sort(in);
		for(int i=in.length-1;i>=0;i--) {
			if(a<b)
				a+=in[i];
			else
				b+=in[i];
		}
		System.out.println(a==b?"possible":"impossible");
	}
}
0