結果

問題 No.723 2つの数の和
ユーザー TksiTksi
提出日時 2019-03-10 23:39:44
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 1,013 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 59,868 KB
最終ジャッジ日時 2024-10-13 01:01:43
合計ジャッジ時間 5,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
39,296 KB
testcase_01 AC 65 ms
39,296 KB
testcase_02 AC 61 ms
39,168 KB
testcase_03 AC 219 ms
54,844 KB
testcase_04 AC 285 ms
59,828 KB
testcase_05 AC 247 ms
56,148 KB
testcase_06 AC 261 ms
58,872 KB
testcase_07 AC 155 ms
50,580 KB
testcase_08 AC 163 ms
50,812 KB
testcase_09 AC 263 ms
59,868 KB
testcase_10 AC 151 ms
51,400 KB
testcase_11 AC 86 ms
45,056 KB
testcase_12 AC 176 ms
51,476 KB
testcase_13 AC 278 ms
59,564 KB
testcase_14 AC 118 ms
47,440 KB
testcase_15 AC 155 ms
50,724 KB
testcase_16 AC 212 ms
53,976 KB
testcase_17 AC 253 ms
55,504 KB
testcase_18 AC 196 ms
54,852 KB
testcase_19 AC 223 ms
58,132 KB
testcase_20 AC 62 ms
39,296 KB
testcase_21 AC 63 ms
39,424 KB
testcase_22 AC 63 ms
41,448 KB
testcase_23 AC 230 ms
58,240 KB
testcase_24 AC 128 ms
48,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Array.prototype.indexOf = function (num) {
  let left = 0;
  let right = this.length - 1;
  for (;;) {
    if (right < left) return -1;
    const mid = (right - left) / 2 + left | 0;
    if (this[mid] === num && (mid == 0 || this[mid - 1] !== this[mid])) return mid
    if (num <= this[mid]) right = mid - 1;
    else left = mid + 1;
  }
};

Array.prototype.lastIndexOf = function (num) {
  let left = 0;
  let right = this.length - 1;
  for (;;) {
    if (right < left) return -1;
    const mid = (right - left) / 2 + left | 0;
    if (this[mid] === num && (mid == this.length - 1 || this[mid + 1] !== this[mid])) return mid
    if (num < this[mid]) right = mid - 1;
    else left = mid + 1;
  }
};

const input = require('fs').readFileSync('/dev/stdin', 'utf8').slice(0, -1);
let [N, X, ...a] = input.split(/\s/);
a = a
  .map(v => +v)
  .sort((a, b) => a - b);

let sum = 0;
for (const v of a) {
  const index = a.indexOf(X - v);
  sum += index >= 0 ? a.lastIndexOf(X - v) - index + 1 : 0;
}
console.log(sum);
0