結果

問題 No.29 パワーアップ
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-11 13:12:24
言語 PHP
(8.3.4)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 418 bytes
コンパイル時間 1,960 ms
コンパイル使用メモリ 30,548 KB
実行使用メモリ 31,376 KB
最終ジャッジ日時 2024-07-05 22:58:53
合計ジャッジ時間 3,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,084 KB
testcase_01 AC 34 ms
31,268 KB
testcase_02 AC 33 ms
31,232 KB
testcase_03 AC 33 ms
31,336 KB
testcase_04 AC 34 ms
31,156 KB
testcase_05 AC 34 ms
31,360 KB
testcase_06 AC 34 ms
31,240 KB
testcase_07 AC 33 ms
31,124 KB
testcase_08 AC 34 ms
30,884 KB
testcase_09 AC 32 ms
31,168 KB
testcase_10 AC 33 ms
30,868 KB
testcase_11 AC 33 ms
31,072 KB
testcase_12 AC 33 ms
30,968 KB
testcase_13 AC 34 ms
31,024 KB
testcase_14 AC 33 ms
31,104 KB
testcase_15 AC 34 ms
31,036 KB
testcase_16 AC 33 ms
31,184 KB
testcase_17 AC 34 ms
31,256 KB
testcase_18 AC 37 ms
31,376 KB
testcase_19 AC 34 ms
31,332 KB
testcase_20 AC 35 ms
31,220 KB
testcase_21 AC 34 ms
31,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$num = trim(fgets(STDIN));
$array = array();
for ( $in=0; $in<$num; $in++ ) {
	$array = array_merge($array, explode(" ", trim(fgets(STDIN))));
}

$count = array_count_values($array);
$items = count($array);
$powerup = 0;
foreach ( $count as $index => $value ) {
	if ( $value >= 2 ) {
		$use = floor($value / 2);
		$items -= $use*2;
		$powerup += $use;
	}
}
$powerup += floor($items / 4);

echo $powerup.PHP_EOL;
0