結果

問題 No.29 パワーアップ
ユーザー beatdjambeatdjam
提出日時 2016-09-30 09:57:28
言語 PHP
(8.3.4)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 874 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 32,404 KB
最終ジャッジ日時 2024-05-01 08:11:23
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
32,340 KB
testcase_01 AC 36 ms
32,400 KB
testcase_02 AC 36 ms
32,276 KB
testcase_03 AC 38 ms
32,404 KB
testcase_04 AC 36 ms
32,400 KB
testcase_05 AC 34 ms
32,404 KB
testcase_06 AC 38 ms
32,212 KB
testcase_07 AC 36 ms
32,400 KB
testcase_08 AC 35 ms
32,272 KB
testcase_09 AC 36 ms
32,400 KB
testcase_10 AC 37 ms
32,216 KB
testcase_11 AC 36 ms
32,404 KB
testcase_12 AC 36 ms
32,272 KB
testcase_13 AC 35 ms
32,212 KB
testcase_14 AC 34 ms
32,400 KB
testcase_15 AC 35 ms
32,272 KB
testcase_16 AC 37 ms
32,400 KB
testcase_17 AC 35 ms
32,404 KB
testcase_18 AC 36 ms
32,400 KB
testcase_19 AC 34 ms
32,400 KB
testcase_20 AC 34 ms
32,276 KB
testcase_21 AC 34 ms
32,276 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    $input_lines = trim(fgets(STDIN));
    $input_lines = str_replace(array("\r\n","\r","\n"), "", $input_lines);
    do {
        $tmpStr[] = $input_lines;
        $input_lines = trim(fgets(STDIN));
        $input_lines = str_replace(array("\r\n","\r","\n"), "", $input_lines);
    } while ($input_lines !== "");
    
    $items = [1  => 0,
    		  2  => 0,
    		  3  => 0,
    		  4  => 0,
    		  5  => 0,
    		  6  => 0,
    		  7  => 0,
    		  8  => 0,
    		  9  => 0,
    		  10 => 0];
    array_shift($tmpStr);
	
    foreach($tmpStr as $value){
    	$s = explode(" ", $value);
    	foreach($s as $value2){
    		$items[$value2] += 1;
    	}
    }
    
    $power = 0;
    $tmpCnt = 0;
    foreach($items as $key => $value){
    	$power += floor($value / 2);
    	$tmpCnt += ($value - floor($value / 2) * 2);
    } 
    echo $power + floor($tmpCnt / 4);
    
0