結果

問題 No.1687 What the Heck?
ユーザー neko_the_shadowneko_the_shadow
提出日時 2021-10-13 09:07:23
言語 Perl
(5.38.2)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 44 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 43,500 KB
最終ジャッジ日時 2024-09-17 16:14:57
合計ジャッジ時間 4,994 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,816 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 6 ms
6,944 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 169 ms
19,256 KB
testcase_08 AC 245 ms
24,680 KB
testcase_09 AC 170 ms
19,196 KB
testcase_10 AC 109 ms
14,748 KB
testcase_11 AC 116 ms
15,272 KB
testcase_12 AC 565 ms
43,500 KB
testcase_13 AC 558 ms
43,500 KB
testcase_14 AC 546 ms
43,316 KB
testcase_15 AC 556 ms
43,376 KB
testcase_16 AC 537 ms
42,748 KB
testcase_17 AC 34 ms
8,704 KB
testcase_18 AC 567 ms
43,496 KB
testcase_19 AC 10 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

use strict;
use warnings;
use List::Util qw(max);

my $n = <>;
my @a = split / /, <>;
my @b = sort {$a[$a-1] <=> $a[$b-1]} 1..$n;

my $ans = 0;
my $now = 0;
for (my $i = 0; $i < $n-1; $i++) {
    my $x = $b[$i];
    my $y = $b[$i+1];
    
    $now += $x;
    $ans = max($ans, $now-$y);
}
print "$ans\n";
0