結果

問題 No.29 パワーアップ
ユーザー mustonmuston
提出日時 2016-05-13 15:13:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 905 bytes
コンパイル時間 1,708 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-10-05 14:19:00
合計ジャッジ時間 5,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,236 KB
testcase_01 AC 105 ms
53,040 KB
testcase_02 AC 118 ms
53,948 KB
testcase_03 AC 118 ms
54,008 KB
testcase_04 AC 113 ms
54,044 KB
testcase_05 AC 127 ms
54,228 KB
testcase_06 AC 136 ms
53,992 KB
testcase_07 AC 122 ms
54,136 KB
testcase_08 AC 124 ms
54,292 KB
testcase_09 AC 122 ms
54,340 KB
testcase_10 AC 125 ms
54,216 KB
testcase_11 AC 122 ms
53,652 KB
testcase_12 AC 101 ms
52,680 KB
testcase_13 AC 121 ms
54,208 KB
testcase_14 AC 123 ms
53,824 KB
testcase_15 AC 125 ms
54,180 KB
testcase_16 AC 118 ms
53,332 KB
testcase_17 AC 119 ms
54,220 KB
testcase_18 AC 120 ms
53,980 KB
testcase_19 AC 120 ms
54,192 KB
testcase_20 AC 107 ms
52,988 KB
testcase_21 AC 120 ms
54,104 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};
    int powerup = 0;
    int keep = 0;
    //敵を倒す回数nを入力
    int n = scan.nextInt();
    for(int i=0;i<n;i++){
    //アイテムを3つ入力する
      int a = scan.nextInt()-1;
      item[a] = item[a] + 1;
      int b = scan.nextInt()-1;
      item[b] = item[b] + 1;
      int c = scan.nextInt()-1;
      item[c] = item[c] + 1;
    }
    //パワーアップする回数を数える
    for(int i=0;i<item.length;i++){
      powerup = powerup + (item[i]/2);
      keep = keep + item[i]%2;
    }
    powerup = powerup + (keep/4);
    //最大パワーアップ数powerupを出力
    System.out.println(powerup);
  }
}
0