結果

問題 No.1046 Fruits Rush
ユーザー SKSK
提出日時 2022-12-20 15:47:53
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 216 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 30,608 KB
実行使用メモリ 61,480 KB
最終ジャッジ日時 2024-11-18 01:51:50
合計ジャッジ時間 31,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
36,256 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 42 ms
36,140 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 39 ms
36,252 KB
testcase_10 AC 38 ms
61,480 KB
testcase_11 AC 39 ms
36,292 KB
testcase_12 TLE -
testcase_13 AC 40 ms
36,488 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$n,$k] = explode(" ",trim(fgets(STDIN)));
$count = 0;
$a = explode(" ",trim(fgets(STDIN)));

rsort($a);

for($i = 0;$k > $i;$i++){
    if($a[$i] > 0 || $i=0){
        $count += $a[$i];
    }
}

echo $count;
?>
0