結果

問題 No.29 パワーアップ
ユーザー fukuseifukusei
提出日時 2017-05-22 23:03:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 712 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-09-19 10:25:55
合計ジャッジ時間 5,226 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,208 KB
testcase_01 AC 116 ms
41,212 KB
testcase_02 AC 113 ms
41,084 KB
testcase_03 AC 107 ms
41,252 KB
testcase_04 AC 119 ms
41,588 KB
testcase_05 AC 139 ms
41,408 KB
testcase_06 AC 126 ms
41,608 KB
testcase_07 AC 118 ms
41,228 KB
testcase_08 AC 105 ms
41,440 KB
testcase_09 AC 115 ms
41,508 KB
testcase_10 AC 127 ms
41,696 KB
testcase_11 AC 135 ms
41,792 KB
testcase_12 AC 124 ms
41,304 KB
testcase_13 AC 128 ms
41,752 KB
testcase_14 AC 125 ms
41,612 KB
testcase_15 AC 126 ms
41,504 KB
testcase_16 AC 123 ms
41,608 KB
testcase_17 AC 122 ms
41,512 KB
testcase_18 AC 122 ms
41,368 KB
testcase_19 AC 123 ms
41,496 KB
testcase_20 AC 102 ms
41,084 KB
testcase_21 AC 109 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class test{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int item[] = new int [N*3]; 
		int PowerUp = 0;
		int fourUp = 0;
		
		//値の格納
		for(int i=0; i<item.length; i++){
			item[i] = sc.nextInt();
		}
		
		//重複のカウント
		for(int i=0; i<item.length; i++){
			for(int j=0; j<item.length; j++){
				if(item[i] != 0 && i != j && item[i] == item[j]){
					item[i] = 0;
					item[j] = 0;
					PowerUp ++;
				}
			}
		}
		
		//任意の4つのカウント
		for(int i=0; i<item.length; i++){
			if(item[i] != 0){
				item[i] = 0;
				fourUp ++;
			}
		}
		PowerUp += fourUp / 4;
		
		System.out.println(PowerUp);
	}
}
0