結果

問題 No.29 パワーアップ
ユーザー jake_tarojake_taro
提出日時 2015-09-05 21:35:11
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 821 bytes
コンパイル時間 3,855 ms
コンパイル使用メモリ 31,020 KB
実行使用メモリ 31,628 KB
最終ジャッジ日時 2024-07-19 04:13:18
合計ジャッジ時間 3,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,156 KB
testcase_01 AC 39 ms
31,468 KB
testcase_02 AC 41 ms
31,600 KB
testcase_03 AC 39 ms
31,388 KB
testcase_04 AC 39 ms
31,560 KB
testcase_05 AC 41 ms
31,580 KB
testcase_06 AC 38 ms
31,300 KB
testcase_07 AC 37 ms
31,080 KB
testcase_08 AC 40 ms
31,488 KB
testcase_09 AC 40 ms
31,492 KB
testcase_10 AC 40 ms
31,436 KB
testcase_11 AC 40 ms
31,628 KB
testcase_12 AC 39 ms
31,276 KB
testcase_13 AC 39 ms
30,920 KB
testcase_14 AC 39 ms
31,136 KB
testcase_15 AC 39 ms
31,304 KB
testcase_16 AC 38 ms
30,972 KB
testcase_17 AC 40 ms
31,120 KB
testcase_18 AC 37 ms
31,492 KB
testcase_19 AC 38 ms
31,296 KB
testcase_20 AC 39 ms
31,212 KB
testcase_21 AC 38 ms
31,364 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$n = (int)trim(fgets(STDIN)); //敵を倒す回数

//N回分、敵を倒した時にもらえる3つのアイテムの配列
for($i = 0; $i < $n; $i++){
	$abc[] = explode(" ", trim(fgets(STDIN)));
}

//test
# print_r($abc);

for($j = 0; $j < $n; $j++){
	for($k = 0; $k < 3; $k++){
		$all[] = $abc[$j][$k];
	}
}
//ソート
sort($all);

$count = array_count_values($all);

$count_arr = array_values($count);

$total_powerup = 0;
$powerup_1 = 0;
for($h = 0; $h < count($count_arr); $h++){
	//同じ数字が2つあればパワーアップできる
	$powerup = floor($count_arr[$h] / 2);
	$total_powerup += $powerup;
	
	//4つのアイテムが集まればパワーアップできる
	if((($count_arr[$h]) % 2) == 1){
		$powerup_1++; 
	}
}
$amari = floor($powerup_1 / 4);
echo $amari + $total_powerup, PHP_EOL;
0