結果

問題 No.297 カードの数式
ユーザー nanophoto12nanophoto12
提出日時 2015-11-23 14:59:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,637 bytes
コンパイル時間 2,654 ms
コンパイル使用メモリ 80,664 KB
実行使用メモリ 56,952 KB
最終ジャッジ日時 2024-09-13 17:17:25
合計ジャッジ時間 7,631 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 162 ms
54,724 KB
testcase_01 AC 160 ms
55,112 KB
testcase_02 AC 159 ms
54,716 KB
testcase_03 AC 159 ms
55,040 KB
testcase_04 AC 162 ms
54,680 KB
testcase_05 AC 162 ms
54,688 KB
testcase_06 WA -
testcase_07 AC 160 ms
55,004 KB
testcase_08 AC 158 ms
54,912 KB
testcase_09 AC 158 ms
54,852 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 161 ms
54,944 KB
testcase_13 WA -
testcase_14 AC 159 ms
55,028 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 156 ms
55,168 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package com.company;

import java.util.*;

public class Main {

    private static long RemoveLargest(List<Integer> list, int operatorCount)
    {
        long value = 0L;
        int size = list.size();
        for(int i = 0; i < size - operatorCount;i++)
        {
            value *=10L;
            value += list.get(0);
            list.remove(0);
        }
        return value;
    }


    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        List<Integer> list = new ArrayList<Integer>(0);
        Integer plusCount = 0;
        Integer minusCount = 0;
        for(int i = 0; i < n;i++)
        {
            String token = scanner.next();
            if(token.equals("+"))
            {
                plusCount++;
                continue;
            }
            if(token.equals("-"))
            {
                minusCount++;
                continue;
            }
            int value = Integer.parseInt(token);
            list.add(value);
        }
        Collections.sort(list);
        Collections.reverse(list);
        Long largest = RemoveLargest(list, plusCount+minusCount);
        Long maxValue = largest;
        for(int i = 0; i < plusCount;i++)
        {
            maxValue += list.get(i);
        }
        for(int i = plusCount;i < plusCount + minusCount;i++)
        {
            maxValue -= list.get(i);
        }
        Long minValue = maxValue;
        if(minusCount > 0)
        {
            minValue = -maxValue;
        }
        System.out.println(maxValue.toString() + " " + minValue.toString());
    }
}
0