結果

問題 No.297 カードの数式
ユーザー GrenacheGrenache
提出日時 2015-11-06 23:02:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,714 bytes
コンパイル時間 3,591 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-09-13 13:29:52
合計ジャッジ時間 8,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,832 KB
testcase_01 AC 130 ms
53,960 KB
testcase_02 AC 134 ms
54,148 KB
testcase_03 AC 129 ms
54,148 KB
testcase_04 AC 132 ms
54,160 KB
testcase_05 AC 132 ms
53,848 KB
testcase_06 WA -
testcase_07 AC 134 ms
54,020 KB
testcase_08 AC 134 ms
54,208 KB
testcase_09 AC 136 ms
53,908 KB
testcase_10 AC 137 ms
54,032 KB
testcase_11 AC 121 ms
53,020 KB
testcase_12 AC 137 ms
54,356 KB
testcase_13 AC 137 ms
54,292 KB
testcase_14 AC 137 ms
53,976 KB
testcase_15 AC 136 ms
54,020 KB
testcase_16 AC 137 ms
54,028 KB
testcase_17 AC 137 ms
53,520 KB
testcase_18 AC 134 ms
53,856 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 138 ms
54,040 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder297 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        char[] c = new char[n];
        int p = 0;
        int m = 0;
        int[] d = new int[10];
        for (int i = 0; i < n; i++) {
        	c[i] = sc.next().charAt(0);
        	if (c[i] == '+') {
        		p++;
        	} else if (c[i] == '-') {
        		m++;
        	} else {
        		d[c[i] - '0']++;
        	}
        }
        
        long[] num = new long[p + m + 1];
        for (int i = 0; i < p + m + 1 - 1; i++) {
        	for (int j = 0; j < 10; j++) {
        		if (d[j] > 0) {
        			num[i] = j;
        			d[j]--;
        			break;
        		}
        	}
        }

        long tmp = 0;
        for (int i = 9; i >= 0; i--) {
        	while (d[i] > 0) {
        		tmp = tmp * 10 + i;
        		d[i]--;
        	}
        }
        num[p + m + 1 - 1] = tmp;

        long max = 0;
        int tmpp = p;
        int tmpm = m;
        for (int i = p + m; i >= 0; i--) {
        	if (i == p + m) {
        		max += num[i];
        	} else if (tmpp > 0) {
        		max += num[i];
        		tmpp--;
        	} else if (tmpm > 0) {
        		max -= num[i];
        		tmpm--;
        	}
        }

        long min = 0;
        tmpp = p;
        tmpm = m;
        for (int i = 0; i < p + m + 1; i++) {
        	if (i == 0) {
        		min += num[i];
        	} else if (tmpp > 0) {
        		min += num[i];
        		tmpp--;
        	} else if (tmpm > 0) {
        		min -= num[i];
        		tmpm--;
        	}
        }
        
        System.out.printf("%d %d\n", max, min);

        sc.close();
    }
}
0