結果

問題 No.29 パワーアップ
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 16:11:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 2,180 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 54,728 KB
最終ジャッジ日時 2024-06-23 23:48:29
合計ジャッジ時間 5,876 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,276 KB
testcase_01 AC 128 ms
54,100 KB
testcase_02 AC 127 ms
54,728 KB
testcase_03 AC 118 ms
54,152 KB
testcase_04 AC 126 ms
54,472 KB
testcase_05 AC 141 ms
54,192 KB
testcase_06 AC 141 ms
54,400 KB
testcase_07 AC 137 ms
54,488 KB
testcase_08 AC 139 ms
54,284 KB
testcase_09 AC 129 ms
54,300 KB
testcase_10 AC 145 ms
54,532 KB
testcase_11 AC 154 ms
54,312 KB
testcase_12 AC 133 ms
53,996 KB
testcase_13 AC 138 ms
54,180 KB
testcase_14 AC 138 ms
54,160 KB
testcase_15 AC 139 ms
54,008 KB
testcase_16 AC 138 ms
54,312 KB
testcase_17 AC 133 ms
54,168 KB
testcase_18 AC 138 ms
54,384 KB
testcase_19 AC 138 ms
54,232 KB
testcase_20 AC 125 ms
54,152 KB
testcase_21 AC 128 ms
54,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		s.nextInt();
		int[] I=new int[11];
		int U=0,D=0,i;
		while(s.hasNext()){
			if(I[i=s.nextInt()]<0)U++;else D++;
			I[i]=~I[i];
		}
		System.out.println(U+(D-U)/4);
	}
}
0