結果

問題 No.29 パワーアップ
ユーザー shinshin
提出日時 2022-05-15 18:27:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 551 bytes
コンパイル時間 4,199 ms
コンパイル使用メモリ 75,664 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-09-13 03:46:58
合計ジャッジ時間 7,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,008 KB
testcase_01 AC 129 ms
54,192 KB
testcase_02 AC 129 ms
54,244 KB
testcase_03 AC 129 ms
53,820 KB
testcase_04 AC 127 ms
53,940 KB
testcase_05 AC 133 ms
54,184 KB
testcase_06 AC 133 ms
54,100 KB
testcase_07 AC 131 ms
54,168 KB
testcase_08 AC 129 ms
53,820 KB
testcase_09 AC 127 ms
54,260 KB
testcase_10 AC 134 ms
54,208 KB
testcase_11 AC 135 ms
54,208 KB
testcase_12 AC 127 ms
54,200 KB
testcase_13 AC 132 ms
54,168 KB
testcase_14 AC 134 ms
53,984 KB
testcase_15 AC 131 ms
54,196 KB
testcase_16 AC 131 ms
54,100 KB
testcase_17 AC 128 ms
53,988 KB
testcase_18 AC 129 ms
54,068 KB
testcase_19 AC 116 ms
53,160 KB
testcase_20 AC 127 ms
54,388 KB
testcase_21 AC 129 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;
public class No29 {

	public static void main(String[] args) {
		//パワーアップ
		Scanner s = new Scanner(System.in);
		int N = Integer.parseInt(s.nextLine()), count = 0,i;
		ArrayList<String> list = new ArrayList<>();
		for(i = 0;i < N;i++) {
			for(String str : s.nextLine().split(" ")) {
				if(list.contains(str)) {
					count++;
					list.remove(str);
				}else {
					list.add(str);
				}
			}
		}

		s.close();
		
		count += (int)(list.size() / 4);
		System.out.println(count);
	}

}
0