結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー SKSK
提出日時 2023-01-04 15:07:57
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 32,404 KB
実行使用メモリ 42,736 KB
最終ジャッジ日時 2024-05-05 18:13:30
合計ジャッジ時間 2,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 45 ms
31,020 KB
testcase_02 AC 40 ms
30,676 KB
testcase_03 AC 41 ms
30,820 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 40 ms
30,724 KB
testcase_07 AC 114 ms
39,928 KB
testcase_08 AC 109 ms
39,800 KB
testcase_09 AC 113 ms
40,056 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 41 ms
31,128 KB
testcase_13 AC 41 ms
30,624 KB
testcase_14 AC 40 ms
30,912 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 40 ms
30,748 KB
testcase_18 AC 42 ms
30,892 KB
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$n,$m,$x,$y] = explode(" ",trim(fgets(STDIN)));
$a = explode(" ",trim(fgets(STDIN)));
sort($a);
$ans = 0;


for($i = $m;$n > $i;$i++){
    if($a[$i] > $y){
        $ans += $a[$i];
    }
}


if($a[$n-$m-1] <= $x){
    echo $ans."\n";
}else{
    echo "Handicapped"."\n";
}
0