結果

問題 No.29 パワーアップ
ユーザー jimanojimano
提出日時 2018-01-08 14:56:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 640 bytes
コンパイル時間 3,453 ms
コンパイル使用メモリ 74,696 KB
実行使用メモリ 42,104 KB
最終ジャッジ日時 2024-12-23 12:12:05
合計ジャッジ時間 7,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,668 KB
testcase_01 AC 140 ms
41,244 KB
testcase_02 AC 137 ms
41,600 KB
testcase_03 AC 130 ms
40,444 KB
testcase_04 AC 134 ms
41,488 KB
testcase_05 AC 154 ms
41,348 KB
testcase_06 AC 146 ms
41,760 KB
testcase_07 AC 141 ms
41,220 KB
testcase_08 AC 140 ms
41,264 KB
testcase_09 AC 136 ms
41,528 KB
testcase_10 AC 148 ms
42,104 KB
testcase_11 AC 153 ms
41,820 KB
testcase_12 AC 139 ms
41,452 KB
testcase_13 AC 149 ms
41,224 KB
testcase_14 AC 155 ms
41,852 KB
testcase_15 AC 149 ms
41,696 KB
testcase_16 AC 145 ms
41,500 KB
testcase_17 AC 142 ms
41,236 KB
testcase_18 AC 145 ms
41,496 KB
testcase_19 AC 144 ms
41,544 KB
testcase_20 AC 136 ms
41,244 KB
testcase_21 AC 134 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.util.Scanner;

public class No0029 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] items = new int[10];

		// アイテムを格納
		for (int i = 0; i < N * 3; i++) {
			int itemNum = sc.nextInt();
			items[itemNum - 1] = items[itemNum - 1] + 1;
		}

		int upCnt = 0;
		int modCnt = 0;
		for (int i : items) {
			upCnt = upCnt + (i / 2);// 同じアイテム2つでパワーアップ
			modCnt = modCnt + (i % 2);
		}
		upCnt = upCnt + (modCnt / 4);// 任意のアイテム4つでパワーアップ

		System.out.println(upCnt);
	}	
}
0