結果

問題 No.29 パワーアップ
ユーザー tazakkytazakky
提出日時 2017-09-08 21:40:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 730 bytes
コンパイル時間 3,472 ms
コンパイル使用メモリ 30,604 KB
実行使用メモリ 31,372 KB
最終ジャッジ日時 2024-11-07 05:17:14
合計ジャッジ時間 5,320 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,272 KB
testcase_01 AC 42 ms
31,264 KB
testcase_02 AC 42 ms
31,168 KB
testcase_03 AC 43 ms
30,996 KB
testcase_04 AC 43 ms
31,308 KB
testcase_05 AC 42 ms
31,076 KB
testcase_06 AC 43 ms
31,084 KB
testcase_07 AC 43 ms
31,116 KB
testcase_08 AC 42 ms
31,072 KB
testcase_09 AC 42 ms
31,244 KB
testcase_10 AC 43 ms
31,156 KB
testcase_11 AC 42 ms
31,136 KB
testcase_12 AC 42 ms
31,184 KB
testcase_13 AC 42 ms
31,244 KB
testcase_14 AC 42 ms
31,372 KB
testcase_15 AC 43 ms
31,268 KB
testcase_16 AC 43 ms
31,072 KB
testcase_17 AC 42 ms
31,260 KB
testcase_18 AC 41 ms
30,952 KB
testcase_19 AC 43 ms
30,992 KB
testcase_20 AC 41 ms
31,180 KB
testcase_21 AC 41 ms
31,148 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    // 1行目に敵を倒す回数を表すN (1<=N<=100)
    $n = trim(fgets(STDIN));
    // 2行目以降はi(1<=i<=N)回目で敵を倒した時のもらえる3つのアイテムの番号ai,bi,ci(1<=ai,bi,ci<=10)
    $items = array();
    for($i = 0; $i < $n; $i++){
        $item = explode(" ", trim(fgets(STDIN)));
        $items = array_merge($items, $item);
    }
    //print_r($items);
    $up = 0;
    $check = array();
    foreach ($items as $value) {
        if(in_array($value, $check)){
            $up++;
            $key = array_search($value, $check);
            unset($check[$key]);
        }else{
            $check[] = $value;
        }
    }
    echo $up + floor(count($check) / 4)."\n";

    
?>
0