結果

問題 No.297 カードの数式
ユーザー htensaihtensai
提出日時 2019-12-26 17:58:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 1,904 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 81,180 KB
実行使用メモリ 55,080 KB
最終ジャッジ日時 2024-10-04 15:11:22
合計ジャッジ時間 6,185 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,560 KB
testcase_01 AC 128 ms
54,568 KB
testcase_02 AC 119 ms
54,540 KB
testcase_03 AC 119 ms
54,760 KB
testcase_04 AC 132 ms
54,816 KB
testcase_05 AC 122 ms
54,164 KB
testcase_06 AC 130 ms
55,080 KB
testcase_07 AC 120 ms
54,504 KB
testcase_08 AC 119 ms
54,520 KB
testcase_09 AC 128 ms
54,640 KB
testcase_10 AC 130 ms
54,832 KB
testcase_11 AC 129 ms
54,828 KB
testcase_12 AC 124 ms
54,932 KB
testcase_13 AC 129 ms
54,780 KB
testcase_14 AC 129 ms
54,928 KB
testcase_15 AC 133 ms
54,876 KB
testcase_16 AC 117 ms
54,388 KB
testcase_17 AC 130 ms
54,852 KB
testcase_18 AC 119 ms
54,548 KB
testcase_19 AC 118 ms
54,688 KB
testcase_20 AC 128 ms
54,848 KB
testcase_21 AC 131 ms
54,580 KB
testcase_22 AC 128 ms
54,828 KB
testcase_23 AC 134 ms
54,608 KB
testcase_24 AC 118 ms
54,192 KB
testcase_25 AC 113 ms
54,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = Integer.parseInt(sc.nextLine());
        ArrayList<Integer> numbers = new ArrayList<>();
        ArrayList<Character> chars = new ArrayList<>();
        char[] arr = sc.nextLine().toCharArray();
        for (int i = 0; i < arr.length; i += 2) {
            if (arr[i] >= '0' && arr[i] <= '9') {
                numbers.add(arr[i] - '0');
            } else {
                chars.add(arr[i]);
            }
        }
        Collections.sort(numbers);
        Collections.sort(chars);
        long max = 0;
        int count = numbers.size() - chars.size();
        for (int i = 0; i < count; i++) {
            max *= 10;
            max += numbers.get(numbers.size() - 1 - i);
        }
        long min;
        if (chars.get(chars.size() - 1) == '-') {
            min = - max;
            for (int i = chars.size() - 2; i >= 0; i--) {
                if (chars.get(i) == '+') {
                    min += numbers.get(i + 1);
                } else {
                    min -= numbers.get(i + 1);
                }
            }
            min += numbers.get(0);
        } else {
            int[] values = new int[chars.size() + 1];
            for (int i = 0; i < numbers.size(); i++) {
                int idx = i % values.length;
                values[idx] *= 10;
                values[idx] += numbers.get(i);
            }
            min = 0;
            for (int i = 0; i < values.length; i++) {
                min += values[i];
            }
        }
        for (int i = 0; i < chars.size(); i++) {
            if (chars.get(chars.size() - 1 - i) == '+') {
                max += numbers.get(i);
            } else {
                max -= numbers.get(i);
            }
        }
        System.out.println(max + " " + min);
    }
    
}
0