結果

問題 No.29 パワーアップ
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-26 02:11:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 1,013 bytes
コンパイル時間 3,291 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-11-14 13:26:11
合計ジャッジ時間 7,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,132 KB
testcase_01 AC 131 ms
54,060 KB
testcase_02 AC 136 ms
54,220 KB
testcase_03 AC 132 ms
54,164 KB
testcase_04 AC 118 ms
52,800 KB
testcase_05 AC 146 ms
54,092 KB
testcase_06 AC 146 ms
54,276 KB
testcase_07 AC 138 ms
54,168 KB
testcase_08 AC 136 ms
54,440 KB
testcase_09 AC 129 ms
54,312 KB
testcase_10 AC 155 ms
54,136 KB
testcase_11 AC 155 ms
54,028 KB
testcase_12 AC 133 ms
54,220 KB
testcase_13 AC 147 ms
54,212 KB
testcase_14 AC 148 ms
54,480 KB
testcase_15 AC 143 ms
54,392 KB
testcase_16 AC 145 ms
54,156 KB
testcase_17 AC 138 ms
53,864 KB
testcase_18 AC 139 ms
53,904 KB
testcase_19 AC 142 ms
54,040 KB
testcase_20 AC 131 ms
54,196 KB
testcase_21 AC 132 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Scanner;

public class No29 {

	public static void main(String[] args) throws IOException, NumberFormatException{
		
		/*重なった数字を取っていくのではなく、配列(対応する番号の箱)に入れていく*/
		
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] item = new int[10];
		for(int i=0; i < N * 3; i++){
			int temp = sc.nextInt();
			item[temp-1]++; //入力した数値と配列の数字にはズレがあるので、-1して配列に入れる
		}
		/************************************************************************/
		
		/*1つの箱(配列)に2つ以上重なった数字が入っているかチェック
		 * /2した分レベルアップ、奇数なら1つ残して計4つ余れば1レベルアップ*/
		
		int level = 0; int amari =0;
		for(int i =0; i <10; i++){
			level += item[i]/2;
			item[i] %= 2;
			amari += item[i];
		}
		level += amari / 4;
		System.out.print(level);
		sc.close();
		
		}

}
0