結果

問題 No.1816 MUL-DIV Game
ユーザー koanviolinkoanviolin
提出日時 2022-01-21 22:50:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,260 ms / 2,000 ms
コード長 2,058 bytes
コンパイル時間 2,667 ms
コンパイル使用メモリ 80,080 KB
実行使用メモリ 64,848 KB
最終ジャッジ日時 2024-05-04 14:06:01
合計ジャッジ時間 21,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,212 KB
testcase_01 AC 132 ms
41,496 KB
testcase_02 AC 134 ms
41,416 KB
testcase_03 AC 147 ms
41,428 KB
testcase_04 AC 126 ms
39,984 KB
testcase_05 AC 135 ms
41,520 KB
testcase_06 AC 135 ms
41,584 KB
testcase_07 AC 139 ms
41,676 KB
testcase_08 AC 135 ms
41,584 KB
testcase_09 AC 329 ms
47,768 KB
testcase_10 AC 703 ms
51,016 KB
testcase_11 AC 625 ms
50,224 KB
testcase_12 AC 560 ms
49,348 KB
testcase_13 AC 886 ms
53,608 KB
testcase_14 AC 716 ms
51,176 KB
testcase_15 AC 726 ms
52,128 KB
testcase_16 AC 393 ms
49,356 KB
testcase_17 AC 1,174 ms
62,960 KB
testcase_18 AC 1,081 ms
62,184 KB
testcase_19 AC 727 ms
51,996 KB
testcase_20 AC 1,100 ms
63,528 KB
testcase_21 AC 613 ms
50,180 KB
testcase_22 AC 583 ms
49,596 KB
testcase_23 AC 135 ms
41,224 KB
testcase_24 AC 133 ms
41,440 KB
testcase_25 AC 1,200 ms
64,540 KB
testcase_26 AC 1,044 ms
64,848 KB
testcase_27 AC 1,260 ms
64,428 KB
testcase_28 AC 996 ms
63,528 KB
testcase_29 AC 1,240 ms
64,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.util.*;

public class Main {
    public static void main(String[] argv){
        Scanner sc = new Scanner(new BufferedInputStream(System.in));
        TreeMap<Long,Integer> s = new TreeMap();
        int n = sc.nextInt();
        long[] a= new long[n];
        for(int i = 0 ; i < n ; i++){
            a[i] = sc.nextLong();
            s.put(a[i], s.getOrDefault(a[i], 0) + 1);
        }

        if ( n>1 && n % 2 == 1) {
            System.out.println(1);
        } else {
            int t = 0;
            int tot = n;
           while(tot>1){
               if (t % 2 ==0) {
                   Map.Entry<Long, Integer> x = s.pollFirstEntry();
                   long key1 = x.getKey();
                   int val1 = x.getValue() - 1;
                   tot--;
                   if (val1 == 0 ) s.remove(key1);
                   else s.put(key1, val1);

                   Map.Entry<Long, Integer> y = s.pollFirstEntry();
                   long key2 = y.getKey();
                   int val2 = y.getValue() - 1;
                   tot--;
                   if(val2==0) s.remove(key2);
                   else s.put(key2, val2);
                   tot++;
                   s.put(key1*key2, s.getOrDefault(key1*key2, 0 )+ 1);

               }else{
                   Map.Entry<Long, Integer> x = s.pollLastEntry();
                   long key1 = x.getKey();
                   int val1 = x.getValue() - 1;
                   tot--;
                   if (val1 == 0) s.remove(key1);
                   else s.put(key1, val1);

                   Map.Entry<Long, Integer> y = s.pollLastEntry();
                   long key2 = y.getKey();
                   int val2 = y.getValue() - 1;
                   tot--;
                   if(val2 == 0) s.remove(key2);
                   else   s.put(key2, val2);
                   tot++;
                   s.put(1L, s.getOrDefault(1L, 0 )+ 1);
               }
               t^=1;
           }
           System.out.println(s.firstKey());
        }
    }
}
0