結果

問題 No.4 おもりと天秤
ユーザー m2543315647m2543315647
提出日時 2015-05-13 11:58:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 4,008 ms
コンパイル使用メモリ 75,248 KB
実行使用メモリ 42,128 KB
最終ジャッジ日時 2024-07-06 01:16:16
合計ジャッジ時間 7,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,712 KB
testcase_01 AC 117 ms
41,196 KB
testcase_02 AC 134 ms
41,256 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 140 ms
41,556 KB
testcase_06 AC 134 ms
41,332 KB
testcase_07 AC 142 ms
41,564 KB
testcase_08 AC 145 ms
41,684 KB
testcase_09 AC 143 ms
41,460 KB
testcase_10 AC 143 ms
41,460 KB
testcase_11 AC 135 ms
41,224 KB
testcase_12 AC 133 ms
41,344 KB
testcase_13 AC 134 ms
41,352 KB
testcase_14 AC 131 ms
41,484 KB
testcase_15 AC 133 ms
41,196 KB
testcase_16 AC 133 ms
41,596 KB
testcase_17 WA -
testcase_18 AC 144 ms
41,460 KB
testcase_19 AC 144 ms
41,564 KB
testcase_20 AC 145 ms
41,280 KB
testcase_21 AC 145 ms
42,128 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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