結果

問題 No.29 パワーアップ
ユーザー d_nishiyama85d_nishiyama85
提出日時 2015-04-30 01:18:55
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 573 bytes
コンパイル時間 1,807 ms
コンパイル使用メモリ 30,976 KB
実行使用メモリ 31,532 KB
最終ジャッジ日時 2024-07-05 16:53:42
合計ジャッジ時間 3,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,140 KB
testcase_01 AC 40 ms
31,508 KB
testcase_02 AC 40 ms
31,156 KB
testcase_03 AC 40 ms
31,268 KB
testcase_04 AC 39 ms
31,352 KB
testcase_05 AC 40 ms
31,300 KB
testcase_06 AC 39 ms
31,332 KB
testcase_07 AC 40 ms
31,384 KB
testcase_08 AC 40 ms
31,388 KB
testcase_09 AC 40 ms
31,448 KB
testcase_10 AC 40 ms
31,480 KB
testcase_11 AC 39 ms
31,472 KB
testcase_12 AC 40 ms
31,064 KB
testcase_13 AC 41 ms
31,332 KB
testcase_14 AC 39 ms
31,364 KB
testcase_15 AC 40 ms
31,320 KB
testcase_16 AC 41 ms
31,532 KB
testcase_17 AC 42 ms
31,348 KB
testcase_18 AC 40 ms
31,372 KB
testcase_19 AC 40 ms
31,300 KB
testcase_20 AC 41 ms
31,288 KB
testcase_21 AC 39 ms
31,284 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$N = trim(fgets(STDIN));

$list = [];
for ($i = 0; $i < $N; $i++) {
	$items = explode(" ", trim(fgets(STDIN)));
	foreach ($items as $item) {
		if (isset($list[$item])) {
			$list[$item]++;
		} else {
			$list[$item] = 1;
		}
	}
}

$powerup = 0;

while(true) {
	$plenty = array_filter($list, function($count) {
		return $count >= 2;
	});
	if (empty($plenty)) {
		break;
	}
	foreach ($list as $id => &$count) {
		if ($count >= 2) {
			$powerup++;
			$count -= 2;
		}
	}
}

unset($count);

$rest = array_sum($list);

$powerup += intval($rest / 4);

echo $powerup . "\n";
0