結果

問題 No.29 パワーアップ
ユーザー kenji_shioyakenji_shioya
提出日時 2016-07-05 00:37:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 3,416 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-10-12 20:15:20
合計ジャッジ時間 7,327 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,428 KB
testcase_01 AC 126 ms
41,164 KB
testcase_02 AC 126 ms
41,120 KB
testcase_03 AC 128 ms
41,104 KB
testcase_04 AC 125 ms
40,980 KB
testcase_05 AC 142 ms
41,576 KB
testcase_06 AC 138 ms
41,404 KB
testcase_07 AC 137 ms
41,188 KB
testcase_08 AC 131 ms
41,608 KB
testcase_09 AC 129 ms
41,332 KB
testcase_10 AC 139 ms
41,704 KB
testcase_11 AC 142 ms
41,360 KB
testcase_12 AC 129 ms
41,172 KB
testcase_13 AC 139 ms
41,308 KB
testcase_14 AC 142 ms
41,540 KB
testcase_15 AC 143 ms
41,100 KB
testcase_16 AC 128 ms
40,716 KB
testcase_17 AC 117 ms
40,080 KB
testcase_18 AC 134 ms
41,256 KB
testcase_19 AC 134 ms
40,980 KB
testcase_20 AC 125 ms
41,072 KB
testcase_21 AC 127 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise145{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    int[] array = new int[11];
    int a = 0;
    int h = 0;

    for(int i = 0; i < n * 3; i++){
      array[sc.nextInt()]++;
    }
    for(int i = 1; i < 11; i++){
      a += array[i] / 2;
      if(array[i] % 2 == 1){
        h++;
      }
    }
    System.out.println(a + h / 4);
  }
}
0