結果
問題 | No.1816 MUL-DIV Game |
ユーザー | koanviolin |
提出日時 | 2022-01-21 21:36:35 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 872 bytes |
コンパイル時間 | 3,084 ms |
コンパイル使用メモリ | 88,820 KB |
実行使用メモリ | 71,496 KB |
最終ジャッジ日時 | 2024-05-04 12:11:32 |
合計ジャッジ時間 | 16,569 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
41,580 KB |
testcase_01 | AC | 111 ms
40,336 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 118 ms
41,084 KB |
testcase_07 | AC | 117 ms
41,308 KB |
testcase_08 | AC | 112 ms
41,452 KB |
testcase_09 | AC | 267 ms
47,636 KB |
testcase_10 | AC | 523 ms
49,024 KB |
testcase_11 | AC | 453 ms
49,032 KB |
testcase_12 | AC | 476 ms
48,828 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 868 ms
60,124 KB |
testcase_27 | WA | - |
testcase_28 | AC | 816 ms
54,584 KB |
testcase_29 | WA | - |
ソースコード
import java.io.BufferedInputStream; import java.util.PriorityQueue; import java.util.Scanner; public class Main { public static void main(String[] argv){ Scanner sc = new Scanner(new BufferedInputStream(System.in)); int n = sc.nextInt(); long[] a= new long[n]; for(int i = 0 ; i < n ; i++){ a[i] = sc.nextLong(); } if (n == 1) System.out.println(a[0]); PriorityQueue<Long> que = new PriorityQueue<>((x, y)-> Long.compare(y, x)); for(int i = 0 ; i< n; i++){ que.add(a[i]); } int t = 0; while(que.size()>1){ long x = que.poll(), y = que.poll(); if (t==0){ que.add(x*y); }else{ que.add((y+x-1)/x); } t^=1; } System.out.println(que.poll()); } }