結果

問題 No.29 パワーアップ
ユーザー face4face4
提出日時 2018-04-16 21:55:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 772 bytes
コンパイル時間 1,975 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 50,376 KB
最終ジャッジ日時 2024-06-27 04:05:33
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,780 KB
testcase_01 AC 55 ms
50,244 KB
testcase_02 AC 55 ms
49,788 KB
testcase_03 AC 56 ms
50,368 KB
testcase_04 AC 56 ms
49,784 KB
testcase_05 AC 58 ms
49,740 KB
testcase_06 AC 56 ms
49,992 KB
testcase_07 AC 56 ms
50,376 KB
testcase_08 AC 55 ms
50,276 KB
testcase_09 AC 56 ms
50,268 KB
testcase_10 AC 56 ms
49,900 KB
testcase_11 AC 56 ms
50,296 KB
testcase_12 AC 55 ms
50,372 KB
testcase_13 AC 55 ms
49,896 KB
testcase_14 AC 56 ms
49,880 KB
testcase_15 AC 56 ms
50,104 KB
testcase_16 AC 57 ms
50,312 KB
testcase_17 AC 55 ms
50,252 KB
testcase_18 AC 57 ms
50,244 KB
testcase_19 AC 55 ms
50,060 KB
testcase_20 AC 55 ms
50,060 KB
testcase_21 AC 55 ms
49,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;

class Main{
    public static void main(String[] args) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int[] items = new int[11];
        while(n-- > 0){
            String[] input = br.readLine().split(" ");
            for(int i = 0; i < 3; i++){
                items[Integer.parseInt(input[i])]++;
            }
        }
        int rest = 0;
        int score = 0;
        for(int i = 1; i <= 10; i++){
            score += items[i]/2;
            rest += items[i]%2;
        }

        score += rest / 4;

        System.out.println(score);
    }  
}          
0