結果

問題 No.29 パワーアップ
ユーザー ayaaya
提出日時 2019-07-24 18:04:26
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 1,110 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 31,536 KB
最終ジャッジ日時 2024-06-28 01:56:12
合計ジャッジ時間 2,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,976 KB
testcase_01 AC 43 ms
31,388 KB
testcase_02 AC 42 ms
31,412 KB
testcase_03 AC 41 ms
31,100 KB
testcase_04 AC 43 ms
31,212 KB
testcase_05 AC 42 ms
31,260 KB
testcase_06 AC 42 ms
31,296 KB
testcase_07 AC 41 ms
30,900 KB
testcase_08 AC 42 ms
31,432 KB
testcase_09 AC 41 ms
31,120 KB
testcase_10 AC 42 ms
30,980 KB
testcase_11 AC 42 ms
31,192 KB
testcase_12 AC 42 ms
31,012 KB
testcase_13 AC 42 ms
31,204 KB
testcase_14 AC 42 ms
31,436 KB
testcase_15 AC 42 ms
31,284 KB
testcase_16 AC 42 ms
31,512 KB
testcase_17 AC 42 ms
31,196 KB
testcase_18 AC 42 ms
30,984 KB
testcase_19 AC 42 ms
31,192 KB
testcase_20 AC 42 ms
31,068 KB
testcase_21 AC 42 ms
31,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
//No.29 パワーアップ

/*
Quinは、RPGをしている。
そのRPGでは、アイテムは10種類(それぞれ番号付けされている)あり、「同じアイテム」を2つ揃えるか、「任意のアイテム」を4つ揃えるとパワーアップする仕組みがある。
そして敵を倒したら、何かアイテムを3つもらうことができる。
(同じアイテムがもらえることもある。)
このとき、持てるアイテムの上限はないとし、アイテムの組み合わせは自由に決められる。(自動的にパワーアップすることはないとする。)

N回敵を倒すと考えたとき、その時のパワーアップする最大の回数を求めてください。
*/
$level=0;
$items=array_fill(1,10,0);
$N=trim(fgets(STDIN));
for($i=1;$i<=$N;$i++){
  $line=trim(fgets(STDIN));
  $getItems=explode(" ",$line);

  for($x=0;$x<=2;$x++){
  $items[$getItems[$x]] =$items[$getItems[$x]]+1;
  }
}
foreach($items as $key=>$value){
  $level=$level+floor($value/2);
}
$level=$level+floor(($N*3-($level*2))/4);
echo $level;
?>
0