結果

問題 No.1110 好きな歌
ユーザー HaarHaar
提出日時 2020-07-10 21:38:30
言語 Nim
(2.0.2)
結果
AC  
実行時間 381 ms / 5,000 ms
コード長 1,149 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 66,280 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-19 16:17:54
合計ジャッジ時間 13,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 206 ms
5,376 KB
testcase_25 AC 257 ms
5,376 KB
testcase_26 AC 140 ms
5,376 KB
testcase_27 AC 247 ms
5,376 KB
testcase_28 AC 140 ms
5,376 KB
testcase_29 AC 288 ms
5,376 KB
testcase_30 AC 137 ms
5,376 KB
testcase_31 AC 83 ms
5,376 KB
testcase_32 AC 340 ms
5,376 KB
testcase_33 AC 154 ms
5,376 KB
testcase_34 AC 217 ms
5,376 KB
testcase_35 AC 332 ms
5,376 KB
testcase_36 AC 40 ms
5,376 KB
testcase_37 AC 97 ms
5,376 KB
testcase_38 AC 300 ms
5,376 KB
testcase_39 AC 219 ms
5,376 KB
testcase_40 AC 263 ms
5,376 KB
testcase_41 AC 20 ms
5,376 KB
testcase_42 AC 304 ms
5,376 KB
testcase_43 AC 314 ms
5,376 KB
testcase_44 AC 351 ms
5,376 KB
testcase_45 AC 356 ms
5,376 KB
testcase_46 AC 340 ms
5,376 KB
testcase_47 AC 381 ms
5,376 KB
testcase_48 AC 344 ms
5,376 KB
testcase_49 AC 329 ms
5,376 KB
testcase_50 AC 355 ms
5,376 KB
testcase_51 AC 334 ms
5,376 KB
testcase_52 AC 348 ms
5,376 KB
testcase_53 AC 360 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 49) Warning: imported and not used: 'math' [UnusedImport]
/home/judge/data/code/Main.nim(1, 17) Warning: imported and not used: 'strutils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'sugar' [UnusedImport]
/home/judge/data/code/Main.nim(1, 42) Warning: imported and not used: 'bitops' [UnusedImport]

ソースコード

diff #

import sequtils,strutils,sugar,algorithm,bitops,math

proc scanf*(formatstr: cstring){.header: "<stdio.h>", importc: "scanf", varargs.}
proc nextInt*(): int32 = scanf("%d", addr result)
proc nextLong*(): int64 = scanf("%lld", addr result)
proc nextFloat*(): float64 = scanf("%lf", addr result)
proc getchar*(): char {.header: "<stdio.h>", importc: "getchar".}
proc nextChar*(): char =
  while true:
    let c = getchar()
    if c.ord >= 0x21 and c.ord <= 0x7e:
      result = c
      break

proc nextstr*(): string =
  var ok = false
  while true:
    let c = getchar()
    if c.ord >= 0x21 and c.ord <= 0x7e: ok = true
    elif ok: break

    if ok:
      result.add(c)
      


template `max=`*(x, y) = x = max(x, y)
template `min=`*(x, y) = x = min(x, y)
template times*(n: int; body: untyped): untyped = (for _ in 0 ..< n: body)
proc `<-`*[T, U](a: var T, b: U): T =
  a = b
  return a

template `<<`(a: untyped, b: int): untyped = (a shl b)
template `>>`(a: untyped, b: int): untyped = (a shr b)


let N = nextint()
let D = nextint()

let A = newSeqWith(N, nextint())

let B = A.sorted


for x in A:
  let ans = B.upperbound(x - D)

  echo ans
0