結果

問題 No.1046 Fruits Rush
ユーザー SKSK
提出日時 2022-12-20 15:46:14
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 208 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-11-18 01:51:18
合計ジャッジ時間 1,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
31,000 KB
testcase_01 AC 32 ms
31,104 KB
testcase_02 AC 31 ms
31,136 KB
testcase_03 AC 31 ms
30,820 KB
testcase_04 AC 32 ms
31,056 KB
testcase_05 AC 31 ms
31,080 KB
testcase_06 AC 31 ms
30,684 KB
testcase_07 AC 32 ms
31,032 KB
testcase_08 AC 32 ms
31,000 KB
testcase_09 AC 32 ms
30,928 KB
testcase_10 AC 32 ms
30,960 KB
testcase_11 AC 32 ms
31,088 KB
testcase_12 AC 32 ms
30,864 KB
testcase_13 AC 32 ms
31,044 KB
testcase_14 WA -
testcase_15 WA -
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){
        $count += $a[$i];
    }
}

echo $count;
?>
0