結果

問題 No.29 パワーアップ
ユーザー
提出日時 2016-01-20 22:23:53
言語 PHP
(8.3.4)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 1,050 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-09-21 14:51:52
合計ジャッジ時間 1,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,080 KB
testcase_01 AC 35 ms
31,284 KB
testcase_02 AC 37 ms
31,328 KB
testcase_03 AC 37 ms
31,352 KB
testcase_04 AC 39 ms
31,008 KB
testcase_05 AC 37 ms
31,204 KB
testcase_06 AC 37 ms
30,884 KB
testcase_07 AC 37 ms
31,220 KB
testcase_08 AC 35 ms
31,284 KB
testcase_09 AC 35 ms
31,488 KB
testcase_10 AC 36 ms
31,464 KB
testcase_11 AC 39 ms
31,236 KB
testcase_12 AC 38 ms
30,964 KB
testcase_13 AC 40 ms
31,256 KB
testcase_14 AC 36 ms
31,228 KB
testcase_15 AC 36 ms
31,076 KB
testcase_16 AC 36 ms
31,220 KB
testcase_17 AC 37 ms
31,184 KB
testcase_18 AC 36 ms
31,204 KB
testcase_19 AC 36 ms
31,376 KB
testcase_20 AC 37 ms
31,268 KB
testcase_21 AC 37 ms
31,220 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$input = trim(fgets(STDIN));

for($j =1; $j <=10; $j ++){
    $itemList[$j] = 0;
}

for($i = 1; $i <= $input; $i ++){
    $inputItem = trim(fgets(STDIN));
    $explode = explode(" ", $inputItem);
    foreach($explode as $explodeKey => $explodeValue){
        foreach($itemList as $itemListKey => $itemListValue){
            if($explodeValue == $itemListKey){
                $itemList[$explodeValue] ++;
            }
        }
    }
}

$answerCount = 0;
$answerAmari = 0;

for($p = 1; $p <= 10; $p ++){
    $itemListAnswer = floor($itemList[$p] / 2);
    if($itemList[$p] % 2 !== 0){
       $answerCount += $itemListAnswer;
       $answerAmari += $itemList[$p] - ($itemListAnswer * 2);
    }else if($itemListAnswer >= 1){
       $answerCount += $itemListAnswer;
    }else if($itemListAnswer <= 0){
       $itemListAmariAnswer = floor($itemList[$p] % 2);
       $answerAmari += $itemListAmariAnswer;
    }else{
       $answerAmari += 1;
    }
}

$answerAmari4 = floor($answerAmari / 4);
$answerCount += $answerAmari4;

echo $answerCount."\n";
0