結果

問題 No.4 おもりと天秤
ユーザー リチウムリチウム
提出日時 2014-11-17 17:44:28
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 497 bytes
コンパイル時間 1,821 ms
コンパイル使用メモリ 77,876 KB
実行使用メモリ 53,976 KB
最終ジャッジ日時 2024-06-10 19:56:10
合計ジャッジ時間 5,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,876 KB
testcase_01 AC 106 ms
41,120 KB
testcase_02 AC 105 ms
40,100 KB
testcase_03 AC 95 ms
39,740 KB
testcase_04 AC 102 ms
41,304 KB
testcase_05 AC 131 ms
41,612 KB
testcase_06 AC 99 ms
40,200 KB
testcase_07 AC 126 ms
41,636 KB
testcase_08 AC 117 ms
41,320 KB
testcase_09 AC 124 ms
41,608 KB
testcase_10 AC 129 ms
41,432 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 105 ms
40,640 KB
testcase_14 WA -
testcase_15 AC 104 ms
41,348 KB
testcase_16 AC 109 ms
40,944 KB
testcase_17 AC 111 ms
41,404 KB
testcase_18 AC 130 ms
41,288 KB
testcase_19 AC 125 ms
40,708 KB
testcase_20 AC 124 ms
41,552 KB
testcase_21 AC 123 ms
41,196 KB
testcase_22 AC 126 ms
41,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		boolean ok[]=new boolean[10001];
		ok[0]=true;
		int sum=0;
		for(int i=0;i<n;i++){
			int x=sc.nextInt();
			
			for(int j=0;j<=sum;j++){
				if(ok[j])ok[j+x]=true;
			}
			sum+=x;
		}
		String s="";
		if(sum%2==1)s="impossible";
		else {
			if(ok[sum/2])s="possible";
			else s="impossible";
		}
		System.out.println(s);
	}}
0