結果

問題 No.190 Dry Wet Moist
ユーザー 37zigen37zigen
提出日時 2020-03-27 06:44:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 1,936 ms
コンパイル使用メモリ 82,800 KB
実行使用メモリ 69,868 KB
最終ジャッジ日時 2024-06-10 16:00:54
合計ジャッジ時間 15,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
55,032 KB
testcase_01 AC 152 ms
55,264 KB
testcase_02 AC 135 ms
54,628 KB
testcase_03 AC 155 ms
55,148 KB
testcase_04 AC 154 ms
55,216 KB
testcase_05 AC 156 ms
55,016 KB
testcase_06 AC 134 ms
54,836 KB
testcase_07 AC 230 ms
58,020 KB
testcase_08 AC 188 ms
57,572 KB
testcase_09 AC 196 ms
56,968 KB
testcase_10 AC 196 ms
55,336 KB
testcase_11 AC 189 ms
55,920 KB
testcase_12 AC 607 ms
60,000 KB
testcase_13 AC 715 ms
64,620 KB
testcase_14 AC 575 ms
59,872 KB
testcase_15 AC 697 ms
65,724 KB
testcase_16 AC 809 ms
68,540 KB
testcase_17 AC 365 ms
59,672 KB
testcase_18 AC 498 ms
59,888 KB
testcase_19 AC 755 ms
69,280 KB
testcase_20 AC 668 ms
60,500 KB
testcase_21 AC 319 ms
59,444 KB
testcase_22 AC 761 ms
69,816 KB
testcase_23 AC 832 ms
69,868 KB
testcase_24 AC 831 ms
69,676 KB
testcase_25 AC 133 ms
54,944 KB
testcase_26 AC 145 ms
55,124 KB
testcase_27 AC 732 ms
62,180 KB
testcase_28 AC 538 ms
60,280 KB
testcase_29 AC 587 ms
60,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class Main{
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
	
	int positive(int[] A) {
		int s=0,t=A.length-1;
		int ans=0;
		while(s<t) {
			while(s<t&&A[s]+A[t]<=0)++s;
			if(s==t)break;
			++ans;
			++s;--t;
		}
		return ans;
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int[] A=new int[2*N];
		for(int i=0;i<2*N;++i)A[i]=sc.nextInt();
		Arrays.sort(A);
		int zero=0,positive=0,negative=0;
		int s=0,t=A.length-1;
		while(s<t) {
			if(-A[s]==A[t]) {
				++s;--t;
				++zero;
			}else if(-A[s]>A[t])++s;
			else --t;
		}
		positive=positive(A);
		A=Arrays.stream(A).map(i->-i).sorted().toArray();
		negative=positive(A);
		System.out.println(negative+" "+positive+" "+zero);
	}

	public static void main(String[] args){
		new Main().run();
	}
	
}
0