結果

問題 No.1687 What the Heck?
ユーザー kokatsukokatsu
提出日時 2021-09-24 23:05:49
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 2,470 ms
コンパイル使用メモリ 223,852 KB
実行使用メモリ 14,192 KB
最終ジャッジ日時 2024-06-22 12:37:08
合計ジャッジ時間 4,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 25 ms
7,048 KB
testcase_08 AC 34 ms
8,104 KB
testcase_09 AC 24 ms
6,940 KB
testcase_10 AC 16 ms
6,940 KB
testcase_11 AC 18 ms
6,940 KB
testcase_12 AC 71 ms
13,440 KB
testcase_13 AC 73 ms
14,192 KB
testcase_14 AC 73 ms
12,204 KB
testcase_15 AC 72 ms
12,036 KB
testcase_16 AC 72 ms
14,000 KB
testcase_17 AC 6 ms
6,940 KB
testcase_18 AC 73 ms
12,172 KB
testcase_19 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    long N;
    readf("%d\n", N);

    auto P = readln.chomp.split.to!(long[]);
    auto R = iota(1L, N+1).array;
    
    zip(P, R).sort!"a[0] > b[0]";

    long ttl = N * (N + 1) / 2;
    long res;
    foreach (r; R) {
        long tmp = ttl - 2 * r;
        if (res < tmp) {
            res = tmp;
        }
        ttl -= r;
    }

    res.writeln;
}
0