結果

問題 No.1110 好きな歌
ユーザー semisagisemisagi
提出日時 2020-07-10 21:31:13
言語 Swift
(5.10.0)
結果
AC  
実行時間 402 ms / 5,000 ms
コード長 915 bytes
コンパイル時間 1,763 ms
コンパイル使用メモリ 130,944 KB
実行使用メモリ 17,200 KB
最終ジャッジ日時 2024-11-30 19:05:52
合計ジャッジ時間 12,901 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,344 KB
testcase_01 AC 8 ms
9,216 KB
testcase_02 AC 8 ms
9,344 KB
testcase_03 AC 8 ms
9,216 KB
testcase_04 AC 8 ms
9,216 KB
testcase_05 AC 7 ms
9,344 KB
testcase_06 AC 7 ms
9,344 KB
testcase_07 AC 7 ms
9,344 KB
testcase_08 AC 7 ms
9,344 KB
testcase_09 AC 8 ms
9,344 KB
testcase_10 AC 7 ms
9,344 KB
testcase_11 AC 8 ms
9,344 KB
testcase_12 AC 8 ms
9,344 KB
testcase_13 AC 7 ms
9,344 KB
testcase_14 AC 9 ms
9,344 KB
testcase_15 AC 8 ms
9,344 KB
testcase_16 AC 9 ms
9,344 KB
testcase_17 AC 9 ms
9,216 KB
testcase_18 AC 7 ms
9,216 KB
testcase_19 AC 9 ms
9,344 KB
testcase_20 AC 9 ms
9,344 KB
testcase_21 AC 8 ms
9,216 KB
testcase_22 AC 9 ms
9,344 KB
testcase_23 AC 8 ms
9,344 KB
testcase_24 AC 232 ms
13,996 KB
testcase_25 AC 283 ms
14,808 KB
testcase_26 AC 149 ms
12,204 KB
testcase_27 AC 276 ms
14,808 KB
testcase_28 AC 168 ms
12,584 KB
testcase_29 AC 324 ms
15,580 KB
testcase_30 AC 169 ms
12,460 KB
testcase_31 AC 101 ms
11,284 KB
testcase_32 AC 369 ms
16,476 KB
testcase_33 AC 195 ms
12,848 KB
testcase_34 AC 254 ms
14,252 KB
testcase_35 AC 402 ms
17,116 KB
testcase_36 AC 48 ms
10,116 KB
testcase_37 AC 114 ms
11,284 KB
testcase_38 AC 320 ms
15,452 KB
testcase_39 AC 241 ms
13,996 KB
testcase_40 AC 316 ms
15,452 KB
testcase_41 AC 30 ms
9,728 KB
testcase_42 AC 353 ms
16,348 KB
testcase_43 AC 325 ms
15,708 KB
testcase_44 AC 392 ms
17,112 KB
testcase_45 AC 385 ms
17,116 KB
testcase_46 AC 384 ms
17,116 KB
testcase_47 AC 383 ms
17,116 KB
testcase_48 AC 400 ms
17,112 KB
testcase_49 AC 383 ms
17,112 KB
testcase_50 AC 389 ms
17,080 KB
testcase_51 AC 387 ms
17,112 KB
testcase_52 AC 391 ms
17,116 KB
testcase_53 AC 386 ms
17,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

struct Scanner {
    private var stack = [String]()
    private var index = 0
    
    mutating func peek() -> String {
        if stack.count == index {
            stack += readLine()!.split(separator: " ").map{ String($0) }
        }
        return stack[index]
    }
    
    mutating func next() -> String {
        let value = peek()
        index += 1
        return value
    }
    
    mutating func nextInt() -> Int {
        return Int(next())!
    }
    
    mutating func nextDouble() -> Double {
        return Double(next())!
    }
}

var scanner = Scanner()

let N = scanner.nextInt()
let D = scanner.nextInt()

let A = (0 ..< N).map { _ in scanner.nextInt() }
let I = A.indices.sorted(by: { i, j in A[i] < A[j] })

var answer = [Int](repeating: 0, count: N)
var j = 0
for i in I.indices {
    while A[I[j]] + D <= A[I[i]] {
        j += 1
    }
    answer[I[i]] = j
}

answer.forEach { print($0) }
0