結果

問題 No.190 Dry Wet Moist
ユーザー 37zigen37zigen
提出日時 2020-03-27 06:30:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 890 ms / 2,000 ms
コード長 955 bytes
コンパイル時間 2,080 ms
コンパイル使用メモリ 80,612 KB
実行使用メモリ 69,720 KB
最終ジャッジ日時 2024-06-10 15:59:29
合計ジャッジ時間 17,288 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
55,112 KB
testcase_01 AC 143 ms
54,784 KB
testcase_02 AC 162 ms
55,016 KB
testcase_03 AC 166 ms
55,064 KB
testcase_04 AC 168 ms
54,896 KB
testcase_05 AC 156 ms
55,116 KB
testcase_06 AC 157 ms
54,824 KB
testcase_07 AC 222 ms
58,224 KB
testcase_08 AC 211 ms
57,400 KB
testcase_09 AC 208 ms
55,188 KB
testcase_10 AC 210 ms
56,504 KB
testcase_11 AC 210 ms
55,028 KB
testcase_12 AC 680 ms
60,584 KB
testcase_13 AC 700 ms
64,632 KB
testcase_14 AC 655 ms
60,496 KB
testcase_15 AC 691 ms
64,612 KB
testcase_16 AC 766 ms
67,424 KB
testcase_17 AC 397 ms
59,600 KB
testcase_18 AC 597 ms
59,964 KB
testcase_19 AC 787 ms
67,080 KB
testcase_20 AC 600 ms
60,000 KB
testcase_21 AC 334 ms
60,352 KB
testcase_22 AC 857 ms
68,600 KB
testcase_23 AC 879 ms
68,692 KB
testcase_24 AC 890 ms
69,720 KB
testcase_25 AC 158 ms
55,264 KB
testcase_26 AC 156 ms
54,932 KB
testcase_27 AC 703 ms
64,344 KB
testcase_28 AC 572 ms
60,012 KB
testcase_29 AC 587 ms
60,240 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);
		for(int i=0;i<A.length;++i)A[i]*=-1;
		Arrays.sort(A);
		negative=positive(A);
		System.out.println(negative+" "+positive+" "+zero);
	}

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