結果

問題 No.297 カードの数式
ユーザー spaciaspacia
提出日時 2015-12-14 22:59:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,738 bytes
コンパイル時間 2,432 ms
コンパイル使用メモリ 84,672 KB
実行使用メモリ 40,780 KB
最終ジャッジ日時 2024-09-15 12:45:31
合計ジャッジ時間 6,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,228 KB
testcase_01 AC 107 ms
40,352 KB
testcase_02 AC 114 ms
40,472 KB
testcase_03 AC 108 ms
40,164 KB
testcase_04 AC 96 ms
40,400 KB
testcase_05 AC 111 ms
40,368 KB
testcase_06 WA -
testcase_07 AC 100 ms
40,556 KB
testcase_08 AC 108 ms
40,680 KB
testcase_09 AC 104 ms
40,240 KB
testcase_10 AC 102 ms
40,412 KB
testcase_11 AC 106 ms
40,288 KB
testcase_12 AC 107 ms
40,468 KB
testcase_13 AC 109 ms
40,624 KB
testcase_14 AC 95 ms
38,684 KB
testcase_15 AC 106 ms
40,340 KB
testcase_16 AC 109 ms
40,524 KB
testcase_17 AC 96 ms
40,432 KB
testcase_18 AC 107 ms
40,108 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 99 ms
40,160 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {

	public static long getMin (int[] nums , int addCnt , int subCnt) {
		long ret = nums[0];
		int concatCnt = 0 , len = nums.length;
		Arrays.sort(nums);
		int ai = 0, si = 0;
		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 + Long.parseLong(str) : ret - Long.parseLong(str);
				break;
			}
		}
		return ret;
	}

	public static long getMax (int[] nums , int addCnt , int subCnt) {
		long ret = 0;
		int concatCnt = 0 , len = nums.length;
		Arrays.sort(nums);
		int ai = 0, si = 0;
		for (int i = len - 1; i >= 0; i--) {
			if (len - concatCnt++ > addCnt + subCnt) {
				ret = ret * 10 + nums[i];
				continue;
			} else if (ai++ < addCnt) {
				ret += nums[i];
			} else if (si < subCnt) {
				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