結果

問題 No.297 カードの数式
ユーザー spaciaspacia
提出日時 2015-12-14 22:30:08
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,682 bytes
コンパイル時間 3,698 ms
コンパイル使用メモリ 75,572 KB
実行使用メモリ 54,992 KB
最終ジャッジ日時 2023-10-13 16:46:27
合計ジャッジ時間 7,477 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
51,988 KB
testcase_01 AC 95 ms
53,544 KB
testcase_02 AC 93 ms
53,656 KB
testcase_03 AC 86 ms
52,472 KB
testcase_04 RE -
testcase_05 AC 94 ms
52,540 KB
testcase_06 WA -
testcase_07 AC 103 ms
53,316 KB
testcase_08 AC 92 ms
53,736 KB
testcase_09 AC 103 ms
53,776 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 102 ms
53,588 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 RE -
testcase_22 WA -
testcase_23 AC 78 ms
52,620 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {

	public static int getMin (int[] nums , int addCnt , int subCnt) {
		int ret = nums[0] , concatCnt = 0 , len = nums.length;
		Arrays.sort(nums);
		for (int i = 1; i < len; i++) {
			if (addCnt + subCnt > 1 && addCnt > 0) {
				ret += nums[i];
				addCnt++;
			} else if (addCnt + subCnt > 1 && subCnt > 0) {
				ret -= nums[i];
				subCnt++;
			} else {
				String str = "";
				for (int j = i; j < len; j++) {
					str = (nums[j] +  "") + str;
				}
				ret = addCnt > 0 ? ret + Integer.parseInt(str) : ret - Integer.parseInt(str);
				break;
			}
		}
		return ret;
	}

	public static int getMax (int[] nums , int addCnt , int subCnt) {
		int ret = 0 , concatCnt = 0 , len = nums.length;
		Arrays.sort(nums);
		for (int i = len - 1; i >= 0; i--) {
			if (len - concatCnt++ > addCnt + subCnt) {
				ret = ret * 10 + nums[i];
				continue;
			}
			if (addCnt-- > 0) {
				ret += nums[i];
			} else if (subCnt-- > 0) {
				ret -= nums[i];
			}
		}
		return ret;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));

		int addCnt = 0, subCnt = 0;
		int n = Integer.parseInt(br.readLine());
		String[] str = br.readLine().split(" ");
		for (int i = 0; i < n; i++) {
			if (str[i].equals("+")) {
				addCnt++;
			} else if (str[i].equals("-")) {
				subCnt++;
			}
		}
		int[] nums = new int[n - (addCnt + subCnt)];
		int j = 0;
		for (String s : str) {
			if (!s.equals("+") && !s.equals("-")) {
				nums[j++] = Integer.parseInt(s);
			}
		}
		System.out.println(getMax(nums , addCnt , subCnt) + " " + getMin(nums , addCnt , subCnt));
	}
}
0