結果

問題 No.29 パワーアップ
ユーザー shinshin
提出日時 2022-05-15 19:55:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 973 bytes
コンパイル時間 4,079 ms
コンパイル使用メモリ 78,516 KB
実行使用メモリ 50,348 KB
最終ジャッジ日時 2024-09-13 05:54:42
合計ジャッジ時間 6,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,164 KB
testcase_01 AC 53 ms
50,144 KB
testcase_02 AC 52 ms
50,104 KB
testcase_03 AC 53 ms
50,208 KB
testcase_04 AC 52 ms
49,896 KB
testcase_05 AC 54 ms
50,152 KB
testcase_06 AC 54 ms
50,348 KB
testcase_07 AC 53 ms
50,292 KB
testcase_08 AC 54 ms
50,196 KB
testcase_09 AC 54 ms
49,868 KB
testcase_10 AC 55 ms
49,784 KB
testcase_11 AC 54 ms
50,060 KB
testcase_12 AC 52 ms
49,888 KB
testcase_13 AC 53 ms
50,112 KB
testcase_14 AC 54 ms
50,192 KB
testcase_15 AC 54 ms
50,228 KB
testcase_16 AC 54 ms
49,736 KB
testcase_17 AC 54 ms
50,104 KB
testcase_18 AC 53 ms
49,960 KB
testcase_19 AC 54 ms
50,180 KB
testcase_20 AC 53 ms
49,776 KB
testcase_21 AC 52 ms
50,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class No29_3{

	public static void main(String[] args)  throws IOException{
		//パワーアップ 作り直し2回目
		int count = 0 , i;
		String[] text = readStr();
		ArrayList<String> al = new ArrayList<>();
		
		int N = Integer.parseInt(text[0]);
		for(i = 1;i <= N;i++) {
			for(String str : text[i].split(" ")) {
				if(al.contains(str)) {
					count++;
					al.remove(str);
				}else {
					al.add(str);
				}
			}
		}
		
		count += (int)(al.size() / 4);
		System.out.println(count);
	}

	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();
		
		do {
			list.add(br.readLine());
		}while(br.ready());
		
		br.close();
		
		String[] text = new String[list.size()];
		list.toArray(text);
		
		return text;
		
	}
}
0