結果
問題 | No.297 カードの数式 |
ユーザー | scache |
提出日時 | 2015-11-06 23:55:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,645 bytes |
コンパイル時間 | 4,022 ms |
コンパイル使用メモリ | 85,488 KB |
実行使用メモリ | 56,924 KB |
最終ジャッジ日時 | 2024-09-13 13:07:50 |
合計ジャッジ時間 | 8,946 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; public class Main297 { public static void main(String[] args) { new Main297(); } char[] c; public Main297() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); c = new char[n]; for (int i = 0; i < n; i++) c[i] = sc.next().charAt(0); solve(); } ArrayList<Long> l = new ArrayList<Long>(); int plus = 0; int minus = 0; private void solve() { for (char ch : c) { if (ch == '+') plus++; else if (ch == '-') minus++; else l.add((long) (ch - '0')); } Collections.sort(l); long maxNum = 0; for (int i = l.size() - 1; plus + minus <= i; i--) { maxNum = maxNum * 10 + l.get(i); } System.out.println(maxNum); long t = 0; for (int i = plus + minus - 1; 0 <= i; i--) { long sign = minus - 1 < i ? 1 : -1; t += l.get(i) * sign; } long max = maxNum + t; long min = Long.MAX_VALUE; if (minus > 0) { min = -t - maxNum; } else { long d = 1; min = 0; for (int i = l.size() - 1; 0 <= i; i -= plus + 1) { for (int j = 0; j <= plus; j++) { if (i - j >= 0) { min += l.get(i - j) * d; } } d *= 10; } } System.out.println(max + " " + min); } }