結果

問題 No.190 Dry Wet Moist
ユーザー tentententen
提出日時 2021-01-20 11:33:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 785 ms / 2,000 ms
コード長 1,039 bytes
コンパイル時間 3,102 ms
コンパイル使用メモリ 79,512 KB
実行使用メモリ 69,880 KB
最終ジャッジ日時 2024-06-02 04:19:09
合計ジャッジ時間 16,759 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
54,808 KB
testcase_01 AC 129 ms
54,920 KB
testcase_02 AC 148 ms
54,992 KB
testcase_03 AC 157 ms
54,808 KB
testcase_04 AC 152 ms
55,112 KB
testcase_05 AC 146 ms
54,844 KB
testcase_06 AC 146 ms
55,000 KB
testcase_07 AC 222 ms
57,492 KB
testcase_08 AC 202 ms
57,268 KB
testcase_09 AC 193 ms
55,104 KB
testcase_10 AC 191 ms
54,964 KB
testcase_11 AC 190 ms
54,840 KB
testcase_12 AC 661 ms
59,844 KB
testcase_13 AC 646 ms
64,152 KB
testcase_14 AC 554 ms
59,956 KB
testcase_15 AC 706 ms
64,696 KB
testcase_16 AC 756 ms
67,248 KB
testcase_17 AC 382 ms
60,056 KB
testcase_18 AC 584 ms
59,772 KB
testcase_19 AC 726 ms
66,944 KB
testcase_20 AC 702 ms
60,316 KB
testcase_21 AC 311 ms
59,224 KB
testcase_22 AC 760 ms
68,676 KB
testcase_23 AC 785 ms
69,880 KB
testcase_24 AC 737 ms
67,892 KB
testcase_25 AC 143 ms
55,000 KB
testcase_26 AC 134 ms
54,992 KB
testcase_27 AC 639 ms
59,828 KB
testcase_28 AC 445 ms
59,128 KB
testcase_29 AC 544 ms
59,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n * 2];
		for (int i = 0; i < 2 * n; i++) {
		    arr[i] = sc.nextInt();
		}
		Arrays.sort(arr);
		int left = 0;
		int right = 2 * n - 1;
		int moist = 0;
		while (left < right) {
		    if (arr[left] + arr[right] < 0) {
		        left++;
		    } else if (arr[left] + arr[right] > 0) {
		        right--;
		    } else {
		        moist++;
		        left++;
		        right--;
		    }
		}
		left = 0;
		right = 2 * n - 1;
		int dry = 0;
		while (left < right) {
		    if (arr[left] + arr[right] < 0) {
		        dry++;
		        left++;
		        right--;
		    } else {
		        right--;
		    }
		}
		left = 0;
		right = 2 * n - 1;
		int wet = 0;
		while (left < right) {
		    if (arr[left] + arr[right] > 0) {
		        wet++;
		        left++;
		        right--;
		    } else {
		        left++;
		    }
		}
		System.out.println(dry + " " + wet + " " + moist);
	}
}
0