結果

問題 No.190 Dry Wet Moist
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-12 23:33:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 777 ms / 2,000 ms
コード長 1,155 bytes
コンパイル時間 2,456 ms
コンパイル使用メモリ 80,284 KB
実行使用メモリ 69,584 KB
最終ジャッジ日時 2024-09-17 19:49:02
合計ジャッジ時間 16,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,964 KB
testcase_01 AC 133 ms
55,252 KB
testcase_02 AC 136 ms
54,880 KB
testcase_03 AC 141 ms
55,084 KB
testcase_04 AC 137 ms
54,944 KB
testcase_05 AC 145 ms
55,236 KB
testcase_06 AC 137 ms
55,060 KB
testcase_07 AC 198 ms
57,300 KB
testcase_08 AC 179 ms
57,396 KB
testcase_09 AC 197 ms
54,988 KB
testcase_10 AC 173 ms
55,212 KB
testcase_11 AC 176 ms
57,120 KB
testcase_12 AC 567 ms
60,184 KB
testcase_13 AC 600 ms
64,684 KB
testcase_14 AC 574 ms
60,432 KB
testcase_15 AC 638 ms
64,672 KB
testcase_16 AC 688 ms
68,524 KB
testcase_17 AC 347 ms
60,008 KB
testcase_18 AC 555 ms
60,144 KB
testcase_19 AC 735 ms
67,268 KB
testcase_20 AC 546 ms
59,920 KB
testcase_21 AC 315 ms
60,332 KB
testcase_22 AC 754 ms
69,584 KB
testcase_23 AC 749 ms
69,432 KB
testcase_24 AC 777 ms
69,244 KB
testcase_25 AC 133 ms
54,928 KB
testcase_26 AC 136 ms
54,924 KB
testcase_27 AC 639 ms
64,940 KB
testcase_28 AC 519 ms
59,800 KB
testcase_29 AC 573 ms
60,364 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[] a = new int[2 * n];
    for(int i = 0; i < 2 * n; i++) {
      a[i] = sc.nextInt();
    }
    Arrays.sort(a);
    int dry = 0;
    int wet = 0;
    int moist = 0;
    int left = 0;
    int right = 2 * n - 1;
    for(int i = 0; i < 2 * n; i++) {
      while(i < right) {
        if(a[i] + a[right] < 0) {
          dry++;
          right--;
          break;
        } else {
          right--;
        }
      }
    }
    right = 2 * n - 1;
    for(int i = 2 * n - 1; i >= 0; i--) {
      while(left < i) {
        if(a[i] + a[left] > 0) {
          wet++;
          left++;
          break;
        } else {
          left++;
        }
      }
    }
    left = 0;
    for(int i = 0; i < 2 * n; i++) {
      while(i < right) {
        if(a[i] + a[right] == 0) {
          moist++;
          right--;
          break;
        } else if(a[i] + a[right] > 0) {
          right--;
        } else {
          break;
        }
      }
    }
    System.out.println(dry + " " + wet + " " + moist);
  }
}
0