結果

問題 No.29 パワーアップ
ユーザー mustonmuston
提出日時 2016-05-13 16:55:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 981 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-10-05 14:20:13
合計ジャッジ時間 6,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,000 KB
testcase_01 AC 135 ms
54,172 KB
testcase_02 AC 132 ms
53,808 KB
testcase_03 AC 135 ms
54,128 KB
testcase_04 AC 132 ms
54,144 KB
testcase_05 AC 143 ms
54,008 KB
testcase_06 AC 145 ms
54,484 KB
testcase_07 AC 139 ms
54,324 KB
testcase_08 AC 136 ms
54,060 KB
testcase_09 AC 133 ms
53,836 KB
testcase_10 AC 148 ms
54,156 KB
testcase_11 AC 148 ms
54,280 KB
testcase_12 AC 135 ms
54,036 KB
testcase_13 AC 143 ms
53,924 KB
testcase_14 AC 148 ms
54,144 KB
testcase_15 AC 146 ms
54,104 KB
testcase_16 AC 147 ms
54,396 KB
testcase_17 AC 138 ms
54,232 KB
testcase_18 AC 142 ms
54,352 KB
testcase_19 AC 139 ms
53,824 KB
testcase_20 AC 133 ms
54,296 KB
testcase_21 AC 131 ms
53,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
/*yukicoder 問題No.29 パワーアップ*/
class No29 {
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    //配列[10]を作る(初期値は0)
    int[] item = {0,0,0,0,0,0,0,0,0,0};  //10種類のアイテム
    int powerup = 0;  //パワーアップ回数
    int keep = 0;  //同一アイテムを2で割った余りのアイテムの個数
    //敵を倒す回数nを入力
    int n = scan.nextInt();
    for(int i=0;i<n;i++){
    //アイテムを3つ入力する
      int idx1 = scan.nextInt()-1;
      item[idx1]++;
      int idx2 = scan.nextInt()-1;
      item[idx2]++;
      int idx3 = scan.nextInt()-1;
      item[idx3]++;
    }
    //パワーアップする回数を数える
    for(int i=0;i<item.length;i++){
      powerup +=item[i]/2;
      keep +=item[i]%2;
    }
    powerup += (keep/4);
    //最大パワーアップ数powerupを出力
    System.out.println(powerup);
  }
}
0