結果

問題 No.29 パワーアップ
ユーザー jimanojimano
提出日時 2018-01-08 15:00:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 611 bytes
コンパイル時間 2,925 ms
コンパイル使用メモリ 74,560 KB
実行使用メモリ 41,912 KB
最終ジャッジ日時 2024-06-06 01:37:22
合計ジャッジ時間 6,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,476 KB
testcase_01 AC 111 ms
41,252 KB
testcase_02 AC 126 ms
41,148 KB
testcase_03 AC 127 ms
41,260 KB
testcase_04 AC 122 ms
41,592 KB
testcase_05 AC 138 ms
41,596 KB
testcase_06 AC 131 ms
41,364 KB
testcase_07 AC 129 ms
41,572 KB
testcase_08 AC 113 ms
41,272 KB
testcase_09 AC 131 ms
41,336 KB
testcase_10 AC 135 ms
41,452 KB
testcase_11 AC 130 ms
41,648 KB
testcase_12 AC 123 ms
41,768 KB
testcase_13 AC 140 ms
41,392 KB
testcase_14 AC 132 ms
41,488 KB
testcase_15 AC 132 ms
41,912 KB
testcase_16 AC 135 ms
41,356 KB
testcase_17 AC 131 ms
41,464 KB
testcase_18 AC 127 ms
41,508 KB
testcase_19 AC 134 ms
41,504 KB
testcase_20 AC 117 ms
41,036 KB
testcase_21 AC 121 ms
41,324 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 += i / 2;// 同じアイテム2つでパワーアップ
			modCnt += i % 2;
		}
		upCnt += modCnt / 4;// 任意のアイテム4つでパワーアップ
		System.out.println(upCnt);
	}	
}
0