結果
問題 | No.297 カードの数式 |
ユーザー | mitsuo |
提出日時 | 2016-05-15 10:55:41 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,648 bytes |
コンパイル時間 | 3,122 ms |
コンパイル使用メモリ | 84,264 KB |
実行使用メモリ | 55,312 KB |
最終ジャッジ日時 | 2024-10-06 03:16:20 |
合計ジャッジ時間 | 6,795 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
55,156 KB |
testcase_01 | AC | 142 ms
55,060 KB |
testcase_02 | AC | 130 ms
54,480 KB |
testcase_03 | AC | 145 ms
55,120 KB |
testcase_04 | WA | - |
testcase_05 | AC | 137 ms
55,104 KB |
testcase_06 | WA | - |
testcase_07 | AC | 141 ms
55,048 KB |
testcase_08 | AC | 129 ms
54,672 KB |
testcase_09 | AC | 161 ms
55,120 KB |
testcase_10 | AC | 152 ms
55,036 KB |
testcase_11 | AC | 138 ms
54,828 KB |
testcase_12 | AC | 132 ms
54,676 KB |
testcase_13 | AC | 147 ms
54,928 KB |
testcase_14 | AC | 140 ms
55,072 KB |
testcase_15 | AC | 141 ms
54,828 KB |
testcase_16 | AC | 140 ms
54,696 KB |
testcase_17 | AC | 128 ms
54,676 KB |
testcase_18 | AC | 129 ms
54,440 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 141 ms
55,084 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
package jp.fedom.challange.yuki.l2.q297; import java.util.Comparator; import java.util.PriorityQueue; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String[] c = new String[N]; for (int i = 0; i < N; i++) { c[i] = sc.next(); } sc.close(); System.out.println(solve(N, c)); } public static String solve(int N, String[] c) { PriorityQueue<Long> n = new PriorityQueue<>(new Comparator<Long>() { @Override public int compare(Long o1, Long o2) { return (int)(o2 - o1); }; }); PriorityQueue<Character> ex = new PriorityQueue<>(new Comparator<Character>() { @Override public int compare(Character o1, Character o2) { return o1 - o2; }; }); PriorityQueue<Character> nex = new PriorityQueue<>(new Comparator<Character>() { @Override public int compare(Character o1, Character o2) { return o2 - o1; }; }); for (String s : c) { if (s.equals("+") || s.equals("-")) { ex.add(s.charAt(0)); } else { n.add(new Long(s)); } } long max = 0; long min = 0; while (n.size() > ex.size()) { max *= 10; max += n.poll(); } PriorityQueue<Long> nc = new PriorityQueue<>(n); nex.addAll(ex); long absmax = max; while (ex.size() > 0) { char ch = (char) ex.poll(); if (ch == '-') { max -= n.poll(); } else { max += n.poll(); } } nc.add(absmax); nex.add('+'); while (nex.size() > 0) { char ch = (char) nex.poll(); if (ch == '-') { min -= nc.poll(); } else { min += nc.poll(); } } return max + " " + min; } }