結果

問題 No.29 パワーアップ
ユーザー 水野嶺水野嶺
提出日時 2020-05-28 13:51:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 595 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 76,052 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-10-13 04:08:20
合計ジャッジ時間 5,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
52,836 KB
testcase_01 AC 116 ms
54,148 KB
testcase_02 AC 111 ms
53,592 KB
testcase_03 AC 109 ms
53,024 KB
testcase_04 AC 121 ms
54,040 KB
testcase_05 AC 127 ms
54,012 KB
testcase_06 AC 133 ms
54,340 KB
testcase_07 AC 126 ms
53,992 KB
testcase_08 AC 126 ms
54,152 KB
testcase_09 AC 125 ms
53,972 KB
testcase_10 AC 136 ms
54,244 KB
testcase_11 AC 136 ms
54,060 KB
testcase_12 AC 123 ms
53,932 KB
testcase_13 AC 130 ms
54,256 KB
testcase_14 AC 141 ms
53,896 KB
testcase_15 AC 132 ms
54,332 KB
testcase_16 AC 128 ms
54,076 KB
testcase_17 AC 123 ms
54,188 KB
testcase_18 AC 128 ms
53,936 KB
testcase_19 AC 140 ms
54,092 KB
testcase_20 AC 125 ms
54,096 KB
testcase_21 AC 119 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayList<String> a=new ArrayList<>();
		for(int i=0;i<3*n;i++){
			a.add(sc.next());
		}
		
		int two=0;
		int ans =0;
		
		// カウント
		TreeSet<String> b=new TreeSet<>(a);
		
		
		for(String s:b){
			int coun=0;
			for(String c:a){
				if(s.equals(c))coun++;
			}
			if(coun >= 2){
				two += coun/2;
			}
		}
		
		ans = two + (3*n-2*two)/4;
		
		System.out.println(ans);
	}
}
0