結果
| 問題 |
No.297 カードの数式
|
| コンテスト | |
| ユーザー |
spacia
|
| 提出日時 | 2015-12-14 22:30:08 |
| 言語 | Java (openjdk 23) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 1,682 bytes |
| コンパイル時間 | 2,397 ms |
| コンパイル使用メモリ | 79,276 KB |
| 実行使用メモリ | 40,536 KB |
| 最終ジャッジ日時 | 2024-09-15 12:43:59 |
| 合計ジャッジ時間 | 5,952 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 WA * 13 RE * 3 |
ソースコード
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));
}
}
spacia