結果

問題 No.29 パワーアップ
ユーザー 練習生練習生
提出日時 2015-08-21 15:37:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 3,485 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 42,076 KB
最終ジャッジ日時 2024-07-18 11:16:56
合計ジャッジ時間 6,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,568 KB
testcase_01 AC 103 ms
40,032 KB
testcase_02 AC 102 ms
40,032 KB
testcase_03 AC 95 ms
40,372 KB
testcase_04 AC 106 ms
40,000 KB
testcase_05 AC 124 ms
41,700 KB
testcase_06 AC 120 ms
41,680 KB
testcase_07 AC 117 ms
41,512 KB
testcase_08 AC 110 ms
41,336 KB
testcase_09 AC 98 ms
41,160 KB
testcase_10 AC 115 ms
41,664 KB
testcase_11 AC 118 ms
42,076 KB
testcase_12 AC 108 ms
41,528 KB
testcase_13 AC 115 ms
41,948 KB
testcase_14 AC 123 ms
41,880 KB
testcase_15 AC 117 ms
41,788 KB
testcase_16 AC 113 ms
41,972 KB
testcase_17 AC 109 ms
41,636 KB
testcase_18 AC 113 ms
41,788 KB
testcase_19 AC 118 ms
41,496 KB
testcase_20 AC 108 ms
41,304 KB
testcase_21 AC 105 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No29 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int[] su = new int[10];
		int lvUp = 0;
		int itemCount = 0;
		int n = sc.nextInt();
		for(int i = 0; i < n * 3; i++){
			int getItem = sc.nextInt();
			itemCount++;
			// 同じアイテムが2つ揃う
			if(su[getItem - 1] == 1){	
				lvUp++;
				su[getItem - 1] = 0;
				itemCount -= 2;  	// 2つのアイテムを消費
			}else{
				su[getItem - 1]++;
			}
		}
		System.out.println(lvUp + (int)itemCount / 4);
		sc.close();

	}
}
0