結果

問題 No.1816 MUL-DIV Game
ユーザー ks2mks2m
提出日時 2022-01-21 22:07:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,249 ms / 2,000 ms
コード長 2,001 bytes
コンパイル時間 2,616 ms
コンパイル使用メモリ 81,360 KB
実行使用メモリ 65,108 KB
最終ジャッジ日時 2024-05-04 13:06:42
合計ジャッジ時間 21,629 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,728 KB
testcase_01 AC 136 ms
41,600 KB
testcase_02 AC 137 ms
41,264 KB
testcase_03 AC 135 ms
41,372 KB
testcase_04 AC 131 ms
41,268 KB
testcase_05 AC 129 ms
41,192 KB
testcase_06 AC 134 ms
41,404 KB
testcase_07 AC 135 ms
41,548 KB
testcase_08 AC 134 ms
41,012 KB
testcase_09 AC 382 ms
48,724 KB
testcase_10 AC 746 ms
50,428 KB
testcase_11 AC 628 ms
49,768 KB
testcase_12 AC 633 ms
49,596 KB
testcase_13 AC 869 ms
52,400 KB
testcase_14 AC 656 ms
50,144 KB
testcase_15 AC 708 ms
50,984 KB
testcase_16 AC 395 ms
48,668 KB
testcase_17 AC 1,021 ms
62,436 KB
testcase_18 AC 997 ms
61,188 KB
testcase_19 AC 687 ms
50,840 KB
testcase_20 AC 1,038 ms
63,120 KB
testcase_21 AC 592 ms
49,956 KB
testcase_22 AC 535 ms
48,476 KB
testcase_23 AC 134 ms
41,208 KB
testcase_24 AC 121 ms
40,312 KB
testcase_25 AC 1,142 ms
63,596 KB
testcase_26 AC 1,249 ms
64,408 KB
testcase_27 AC 1,154 ms
64,880 KB
testcase_28 AC 1,111 ms
65,108 KB
testcase_29 AC 1,141 ms
63,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.TreeMap;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		MultiTreeSet<Long> set = new MultiTreeSet<>();
		for (int i = 0; i < n; i++) {
			set.add(sc.nextLong());
		}
		sc.close();

		for (int i = 0; i < n - 1; i++) {
			if (i % 2 == 0) {
				long a = set.pollFirst();
				long b = set.pollFirst();
				set.add(a * b);
			} else {
				long a = set.pollLast();
				long b = set.pollLast();
				set.add((b + a - 1) / a);
			}
		}
		System.out.println(set.pollFirst());
	}

	static class MultiTreeSet<T> {
		TreeMap<T, Integer> map = new TreeMap<>();
		int size = 0;

		void add(T e) {
			map.put(e, map.getOrDefault(e, 0) + 1);
			size++;
		}

		void remove(T e) {
			if (e != null && map.containsKey(e)) {
				int val = map.get(e);
				if (val == 1) {
					map.remove(e);
				} else {
					map.put(e, val - 1);
				}
				size--;
			}
		}

		int sizeAll() {
			return size;
		}

		int sizeUnq() {
			return map.size();
		}

		boolean contains(T e) {
			return map.containsKey(e);
		}

		boolean isEmpty() {
			return size == 0;
		}

		T lower(T e) {
			return map.lowerKey(e);
		}

		T floor(T e) {
			return map.floorKey(e);
		}

		T higher(T e) {
			return map.higherKey(e);
		}

		T ceiling(T e) {
			return map.ceilingKey(e);
		}

		T first() {
			return map.firstKey();
		}

		T last() {
			return map.lastKey();
		}

		T pollFirst() {
			T e = map.firstKey();
			remove(e);
			return e;
		}

		T pollLast() {
			T e = map.lastKey();
			remove(e);
			return e;
		}

		@SuppressWarnings("unchecked")
		T[] toArrayUnq() {
			Object[] arr = map.keySet().toArray();
			return (T[]) arr;
		}

		@SuppressWarnings("unchecked")
		T[] toArrayAll() {
			Object[] arr = new Object[size];
			int idx = 0;
			for (T e : map.keySet()) {
				int num = map.get(e);
				for (int i = 0; i < num; i++) {
					arr[idx] = e;
					idx++;
				}
			}
			return (T[]) arr;
		}
	}
}
0