結果

問題 No.723 2つの数の和
ユーザー toshiro_yanagitoshiro_yanagi
提出日時 2018-08-25 13:58:19
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 3,826 ms
コンパイル使用メモリ 72,748 KB
実行使用メモリ 23,708 KB
最終ジャッジ日時 2024-07-01 03:54:06
合計ジャッジ時間 5,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 35 ms
15,488 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 17 ms
8,960 KB
testcase_16 AC 26 ms
12,800 KB
testcase_17 AC 31 ms
14,592 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,940 KB
testcase_22 WA -
testcase_23 AC 46 ms
23,708 KB
testcase_24 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(8, 7) Warning: Deprecated since v0.20, use 'initHashSet'; initSet is deprecated [Deprecated]

ソースコード

diff #

import strutils, sequtils, tables, sets

let
  tmp, arr = map(split readLine stdin, parseInt)
  (N, X) = (tmp[0], tmp[1])
var
  a = initCountTable[int]()
  b = initSet[int]()
  ans = 0
  j = 0

for i, ai in arr:
  inc a, ai
  incl b, ai

for k, v in a:
  if j * 2 >= a.len - 1: break

  if X - k in a:
    ans += a[k] * a[X - k] * (2 - int(k == X - k))
  j += 1

echo ans
0