結果

問題 No.710 チーム戦
ユーザー htensaihtensai
提出日時 2020-01-30 14:23:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,429 ms / 3,000 ms
コード長 1,402 bytes
コンパイル時間 2,167 ms
コンパイル使用メモリ 78,644 KB
実行使用メモリ 72,068 KB
最終ジャッジ日時 2024-09-16 03:33:13
合計ジャッジ時間 25,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,024 KB
testcase_01 AC 51 ms
37,024 KB
testcase_02 AC 988 ms
61,624 KB
testcase_03 AC 1,126 ms
63,248 KB
testcase_04 AC 1,154 ms
64,976 KB
testcase_05 AC 992 ms
61,112 KB
testcase_06 AC 881 ms
62,176 KB
testcase_07 AC 1,169 ms
62,888 KB
testcase_08 AC 968 ms
60,708 KB
testcase_09 AC 1,037 ms
63,964 KB
testcase_10 AC 866 ms
59,324 KB
testcase_11 AC 1,099 ms
62,652 KB
testcase_12 AC 1,198 ms
67,072 KB
testcase_13 AC 999 ms
64,368 KB
testcase_14 AC 1,115 ms
63,340 KB
testcase_15 AC 1,003 ms
61,788 KB
testcase_16 AC 978 ms
62,728 KB
testcase_17 AC 808 ms
59,612 KB
testcase_18 AC 1,088 ms
63,752 KB
testcase_19 AC 1,129 ms
65,696 KB
testcase_20 AC 1,082 ms
60,600 KB
testcase_21 AC 892 ms
62,092 KB
testcase_22 AC 85 ms
39,100 KB
testcase_23 AC 81 ms
37,820 KB
testcase_24 AC 1,429 ms
72,068 KB
testcase_25 AC 47 ms
36,448 KB
testcase_26 AC 49 ms
36,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static int[][] scores;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        HashMap<Integer, Integer> map = new HashMap<>();
        HashMap<Integer, Integer> next = new HashMap<>();
        map.put(0, 0);
        for (int i = 0; i < n; i++) {
            String[] line = br.readLine().split(" ", 2);
            int a = Integer.parseInt(line[0]);
            int b = Integer.parseInt(line[1]);
            for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
                int key = entry.getKey();
                int value = entry.getValue();
                if (!next.containsKey(key) || next.get(key) >= value + b) {
                    next.put(key, value + b);
                }
                key += a;
                if (!next.containsKey(key) || next.get(key) >= value) {
                    next.put(key, value);
                }
            }
            map = next;
            next = new HashMap<>();
        }
        int min = Integer.MAX_VALUE;
        for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
            min = Math.min(min, Math.max(entry.getKey(), entry.getValue()));
        }
        System.out.println(min);
    }
}
0