結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー SKSK
提出日時 2023-01-04 15:07:57
言語 PHP
(843.2)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 31,180 KB
実行使用メモリ 40,836 KB
最終ジャッジ日時 2024-11-27 18:06:35
合計ジャッジ時間 2,908 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
31,196 KB
testcase_02 AC 41 ms
31,144 KB
testcase_03 AC 35 ms
31,048 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 34 ms
31,256 KB
testcase_07 AC 98 ms
40,188 KB
testcase_08 AC 103 ms
40,188 KB
testcase_09 AC 103 ms
40,056 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 34 ms
31,076 KB
testcase_13 AC 35 ms
31,424 KB
testcase_14 AC 36 ms
31,264 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 34 ms
31,084 KB
testcase_18 AC 33 ms
31,428 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