結果

問題 No.561 東京と京都
ユーザー fjafjafjafjafjafja
提出日時 2017-09-01 17:39:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 649 bytes
コンパイル時間 6,428 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 47,468 KB
最終ジャッジ日時 2024-11-06 17:24:39
合計ジャッジ時間 10,531 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
45,284 KB
testcase_01 AC 139 ms
41,448 KB
testcase_02 AC 137 ms
41,636 KB
testcase_03 AC 133 ms
41,368 KB
testcase_04 AC 133 ms
41,576 KB
testcase_05 AC 131 ms
41,564 KB
testcase_06 AC 133 ms
41,512 KB
testcase_07 AC 120 ms
40,296 KB
testcase_08 AC 136 ms
41,156 KB
testcase_09 AC 139 ms
41,424 KB
testcase_10 AC 153 ms
41,628 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N561
{
	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int D=sc.nextInt();
		int change=0;
		int[] T=new int[N];
		int[] K=new int[N];
		int cnt=0;
		int total=0;
		int max=0;
		for(int i=0;i<N;i++)
		{
			T[i]=sc.nextInt();
			K[i]=sc.nextInt();
		}
		for(int i=0;i<(int)Math.pow(2,N);i++)
		{
			total=0;
			change=0;
			for(int j=0;j<N;j++)
			{
				if((i&(int)Math.pow(2, j))!=0)
				{
					change++;
					total-=D;
				}
				total+=(change%2==0)?T[j]:K[j];
			}
		max=(max<total)?total:max;

		}
		System.out.println(max);
	}

}
0