結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
32,144 KB
testcase_01 AC 40 ms
32,400 KB
testcase_02 AC 40 ms
32,400 KB
testcase_03 AC 40 ms
32,272 KB
testcase_04 WA -
testcase_05 AC 40 ms
32,148 KB
testcase_06 AC 39 ms
32,148 KB
testcase_07 AC 119 ms
42,556 KB
testcase_08 AC 116 ms
42,556 KB
testcase_09 AC 115 ms
42,556 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 39 ms
32,272 KB
testcase_13 AC 39 ms
32,084 KB
testcase_14 AC 40 ms
32,016 KB
testcase_15 AC 40 ms
32,400 KB
testcase_16 AC 40 ms
32,404 KB
testcase_17 AC 39 ms
32,404 KB
testcase_18 AC 40 ms
32,528 KB
testcase_19 AC 39 ms
32,468 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