結果

問題 No.1686 Geschenkt
ユーザー SKSK
提出日時 2022-12-29 15:15:16
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 205 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 39,348 KB
最終ジャッジ日時 2024-05-03 15:26:16
合計ジャッジ時間 4,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 OLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = trim(fgets(STDIN));
$a = explode(" ",trim(fgets(STDIN)));
$ans = 0;

rsort($a);

for ($i = $n-1; $i <= 1; $i--) {
     if($a[$i]-$a[$i-1] !== 1){
         $ans += $a[$i];
     }
}

echo $ans;
?>
0