結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー SKSK
提出日時 2023-01-04 15:12:05
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 284 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 32,396 KB
実行使用メモリ 42,868 KB
最終ジャッジ日時 2024-05-05 18:16:09
合計ジャッジ時間 2,349 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
32,656 KB
testcase_01 AC 40 ms
32,528 KB
testcase_02 AC 40 ms
32,400 KB
testcase_03 AC 39 ms
32,528 KB
testcase_04 WA -
testcase_05 AC 40 ms
32,404 KB
testcase_06 AC 40 ms
32,528 KB
testcase_07 AC 118 ms
42,552 KB
testcase_08 AC 116 ms
42,428 KB
testcase_09 AC 112 ms
42,680 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
32,532 KB
testcase_13 AC 39 ms
32,400 KB
testcase_14 AC 40 ms
32,528 KB
testcase_15 AC 41 ms
32,404 KB
testcase_16 AC 40 ms
32,528 KB
testcase_17 AC 39 ms
32,660 KB
testcase_18 AC 40 ms
32,656 KB
testcase_19 AC 40 ms
32,400 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 = $n-$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