結果

問題 No.29 パワーアップ
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 16:41:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 4,016 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 42,004 KB
最終ジャッジ日時 2024-07-08 01:32:43
合計ジャッジ時間 5,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
40,968 KB
testcase_01 AC 108 ms
40,784 KB
testcase_02 AC 104 ms
41,092 KB
testcase_03 AC 109 ms
40,840 KB
testcase_04 AC 106 ms
41,120 KB
testcase_05 AC 119 ms
41,464 KB
testcase_06 AC 121 ms
41,500 KB
testcase_07 AC 113 ms
41,428 KB
testcase_08 AC 110 ms
40,624 KB
testcase_09 AC 117 ms
41,372 KB
testcase_10 AC 122 ms
42,004 KB
testcase_11 AC 114 ms
41,184 KB
testcase_12 AC 104 ms
41,220 KB
testcase_13 AC 117 ms
41,748 KB
testcase_14 AC 117 ms
41,452 KB
testcase_15 AC 120 ms
41,300 KB
testcase_16 AC 122 ms
41,660 KB
testcase_17 AC 109 ms
41,072 KB
testcase_18 AC 113 ms
40,984 KB
testcase_19 AC 117 ms
41,140 KB
testcase_20 AC 103 ms
41,012 KB
testcase_21 AC 104 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con29 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int N = s.nextInt() , count = 0;
		int[] item = new int[10];
		for(int i = 0;i < 3*N;i++){
			int k = s.nextInt();
			item[k-1]++;
			if(item[k-1] == 2){
				count++;
				item[k-1] = 0;
			}
		}
		s.close();

		N = 0;
		for(int i = 0;i < 10;i++){
			N += item[i];
		}
		System.out.println(count + N / 4);

	}

}
0