結果

問題 No.1380 Borderline
ユーザー k kk k
提出日時 2023-10-23 18:08:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 32,556 KB
実行使用メモリ 32,760 KB
最終ジャッジ日時 2023-10-23 18:08:52
合計ジャッジ時間 6,959 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
32,700 KB
testcase_01 AC 47 ms
32,760 KB
testcase_02 AC 47 ms
32,760 KB
testcase_03 AC 46 ms
32,760 KB
testcase_04 AC 45 ms
32,760 KB
testcase_05 AC 45 ms
32,700 KB
testcase_06 AC 46 ms
32,700 KB
testcase_07 AC 46 ms
32,700 KB
testcase_08 AC 46 ms
32,760 KB
testcase_09 AC 45 ms
32,700 KB
testcase_10 AC 45 ms
32,760 KB
testcase_11 AC 45 ms
32,700 KB
testcase_12 AC 45 ms
32,700 KB
testcase_13 AC 45 ms
32,760 KB
testcase_14 AC 45 ms
32,760 KB
testcase_15 AC 48 ms
32,760 KB
testcase_16 AC 46 ms
32,760 KB
testcase_17 AC 47 ms
32,760 KB
testcase_18 AC 46 ms
32,760 KB
testcase_19 AC 47 ms
32,760 KB
testcase_20 AC 45 ms
32,760 KB
testcase_21 AC 46 ms
32,760 KB
testcase_22 AC 45 ms
32,760 KB
testcase_23 AC 45 ms
32,760 KB
testcase_24 AC 47 ms
32,760 KB
testcase_25 AC 47 ms
32,760 KB
testcase_26 AC 46 ms
32,760 KB
testcase_27 AC 46 ms
32,760 KB
testcase_28 AC 46 ms
32,760 KB
testcase_29 AC 45 ms
32,760 KB
testcase_30 AC 46 ms
32,760 KB
testcase_31 AC 46 ms
32,760 KB
testcase_32 AC 46 ms
32,760 KB
testcase_33 AC 47 ms
32,760 KB
testcase_34 AC 46 ms
32,760 KB
testcase_35 AC 46 ms
32,760 KB
testcase_36 AC 48 ms
32,760 KB
testcase_37 AC 44 ms
32,760 KB
testcase_38 AC 45 ms
32,760 KB
testcase_39 AC 45 ms
32,760 KB
testcase_40 AC 46 ms
32,760 KB
testcase_41 AC 46 ms
32,760 KB
testcase_42 AC 46 ms
32,760 KB
testcase_43 AC 46 ms
32,760 KB
testcase_44 AC 46 ms
32,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $x = [];
    while ($line = fgets(STDIN)) {
        $x[] = explode(" ", trim($line)); //各行の値を変数xに代入、保管
    }
    
    $teiin = $x[0][1];
    $tensuu = $x[1];
    rsort($tensuu);
    
    $data = [];
    foreach($tensuu as $v) {
        if (isset($data[$v])) {
            $data[$v]++;
        } else {
            $data[$v] = 1;
        }
        
    }
    
    $tmp = $teiin;
    $res = 0;
    foreach($data as $v) {
        if ($tmp >= $v) {
            $res += $v;
        }
        $tmp = $tmp - $v;
    }
    
    echo $res;
0