結果

問題 No.1687 What the Heck?
ユーザー ks2mks2m
提出日時 2021-09-24 21:42:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 965 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 2,396 ms
コンパイル使用メモリ 80,776 KB
実行使用メモリ 65,132 KB
最終ジャッジ日時 2024-07-05 10:18:46
合計ジャッジ時間 12,837 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,000 KB
testcase_01 AC 106 ms
40,192 KB
testcase_02 AC 123 ms
41,604 KB
testcase_03 AC 112 ms
41,408 KB
testcase_04 AC 96 ms
39,924 KB
testcase_05 AC 119 ms
41,024 KB
testcase_06 AC 117 ms
41,664 KB
testcase_07 AC 564 ms
50,932 KB
testcase_08 AC 658 ms
52,480 KB
testcase_09 AC 558 ms
50,588 KB
testcase_10 AC 466 ms
48,944 KB
testcase_11 AC 447 ms
48,808 KB
testcase_12 AC 942 ms
65,132 KB
testcase_13 AC 962 ms
65,060 KB
testcase_14 AC 928 ms
64,964 KB
testcase_15 AC 965 ms
65,036 KB
testcase_16 AC 965 ms
64,852 KB
testcase_17 AC 314 ms
48,284 KB
testcase_18 AC 884 ms
64,716 KB
testcase_19 AC 181 ms
43,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.PriorityQueue;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		PriorityQueue<Obj> que = new PriorityQueue<>((o1, o2) -> o2.p - o1.p);
		for (int i = 0; i < n; i++) {
			Obj o = new Obj();
			o.i = i + 1;
			o.p = sc.nextInt();
			que.add(o);
		}
		sc.close();

		long val = (long) n * (n + 1) / 2;
		Obj o = que.peek();
		long ans = val - o.i * 2;

		while (!que.isEmpty()) {
			Obj cur = que.poll();
			val -= cur.i;
			if (que.isEmpty()) {
				ans = Math.max(ans, val);
			} else {
				Obj next = que.peek();
				long val2 = val - next.i * 2;
				ans = Math.max(ans, val2);
			}
		}
		System.out.println(ans);
	}

	static class Obj {
		int i, p;
	}
}
0