結果

問題 No.1816 MUL-DIV Game
ユーザー merlinmerlin
提出日時 2022-01-21 22:11:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 740 ms / 2,000 ms
コード長 1,484 bytes
コンパイル時間 2,609 ms
コンパイル使用メモリ 79,112 KB
実行使用メモリ 67,480 KB
最終ジャッジ日時 2024-05-04 13:12:32
合計ジャッジ時間 13,502 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,612 KB
testcase_01 AC 52 ms
36,992 KB
testcase_02 AC 53 ms
36,712 KB
testcase_03 AC 52 ms
36,812 KB
testcase_04 AC 52 ms
36,564 KB
testcase_05 AC 51 ms
36,644 KB
testcase_06 AC 52 ms
36,964 KB
testcase_07 AC 52 ms
37,000 KB
testcase_08 AC 53 ms
37,016 KB
testcase_09 AC 187 ms
43,524 KB
testcase_10 AC 414 ms
50,036 KB
testcase_11 AC 400 ms
49,516 KB
testcase_12 AC 326 ms
47,980 KB
testcase_13 AC 469 ms
54,488 KB
testcase_14 AC 364 ms
49,028 KB
testcase_15 AC 425 ms
50,172 KB
testcase_16 AC 214 ms
44,764 KB
testcase_17 AC 613 ms
60,576 KB
testcase_18 AC 554 ms
63,516 KB
testcase_19 AC 403 ms
49,764 KB
testcase_20 AC 610 ms
64,052 KB
testcase_21 AC 351 ms
48,320 KB
testcase_22 AC 300 ms
46,804 KB
testcase_23 AC 51 ms
36,964 KB
testcase_24 AC 52 ms
36,728 KB
testcase_25 AC 696 ms
67,164 KB
testcase_26 AC 710 ms
67,160 KB
testcase_27 AC 740 ms
67,136 KB
testcase_28 AC 695 ms
67,240 KB
testcase_29 AC 698 ms
67,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        int i; long a;

        String s[]=bu.readLine().split(" ");
        TreeMap<Long,Integer> tm=new TreeMap<>();
        for(i=0;i<n;i++)
        {
            a=Integer.parseInt(s[i]);
            tm.put(a,tm.getOrDefault(a,0)+1);
        }

        long ans=-1;
        boolean alice=true;
        while(true)
        {
            long lo=tm.higherKey(-1l);
            if(tm.size()==1 && tm.get(lo)==1)
            {
                ans=lo;
                break;
            }

            if(alice)
            {
                remove(tm,lo);
                long lo2=tm.higherKey(lo-1);
                remove(tm,lo2);
                tm.put(lo*lo2,tm.getOrDefault(lo*lo2,0)+1);
            }
            else
            {
                long hi=tm.lowerKey(Long.MAX_VALUE);
                remove(tm,hi);
                long hi2=tm.lowerKey(hi+1);
                remove(tm,hi2);
                tm.put(1l,tm.getOrDefault(1l,0)+1);
            }

            alice=!alice;
        }
        System.out.println(ans);
    }

    static void remove(TreeMap<Long,Integer> tm,long x)
    {
        int v=tm.get(x);
        if(v==1) tm.remove(x);
        else tm.put(x,v-1);
    }
}
0