結果

問題 No.561 東京と京都
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-29 21:06:29
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 714 bytes
コンパイル時間 2,501 ms
コンパイル使用メモリ 76,916 KB
実行使用メモリ 83,296 KB
最終ジャッジ日時 2024-11-19 08:11:46
合計ジャッジ時間 35,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
46,328 KB
testcase_01 AC 138 ms
82,988 KB
testcase_02 AC 139 ms
46,788 KB
testcase_03 AC 136 ms
82,960 KB
testcase_04 AC 137 ms
46,484 KB
testcase_05 AC 136 ms
83,292 KB
testcase_06 AC 138 ms
46,376 KB
testcase_07 AC 137 ms
83,296 KB
testcase_08 AC 138 ms
46,492 KB
testcase_09 AC 144 ms
83,172 KB
testcase_10 AC 148 ms
46,540 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int d=scanner.nextInt();
		t=new int[n];
		k=new int[n];
		for(int i=0;i<n;i++) {
			t[i]=scanner.nextInt();
			k[i]=scanner.nextInt();
		}
		dfs(0,0,true,d,n);
		System.out.println(max);
	}

	static int t[];
	static int k[];
	static int max=0;
	private static void dfs(int i, int c, boolean is_t, int d, int n) {
		if(i==n) {
			max=Math.max(max, c);
			return;
		}
		if(is_t) {
			dfs(i+1,c+t[i],true,d,n);
			dfs(i+1,c+k[i]-d,false,d,n);
		}else {
			dfs(i+1,c+t[i]-d,true,d,n);
			dfs(i+1,c+k[i],false,d,n);
		}
	}
}
0