結果

問題 No.545 ママの大事な二人の子供
ユーザー fjafjafja
提出日時 2017-07-17 18:09:01
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 665 bytes
コンパイル時間 3,357 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 63,136 KB
最終ジャッジ日時 2024-10-08 07:00:54
合計ジャッジ時間 12,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 TLE * 2 -- * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N545
{

	public static void main(String[] args)
	{
		int min=100000;
		int abs=0;
		int total=0;
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int[] a=new int[n];
		int[] b=new int[n];
		for(int i=0;i<n;i++)//1-n
		{
			a[i]=sc.nextInt();
			b[i]=sc.nextInt();
		
		}
		int l=0;
		
while(l<Math.pow(2,n))
{
		int k=1;
		int atotal=0;
		int btotal=0;
		int count=0;

		while(k<Math.pow(2,n))
		{
			if((k&l)!=0)
			{
				atotal+=a[count];
			}
			else
			{
				btotal+=b[count];
			}
			k=k*2;
			count++;
		}
		k=1;
		abs=Math.abs(atotal-btotal);
		min=(abs<min)?abs:min;
	l++;
}
System.out.println(min);
	}

}
0