結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,344 KB
testcase_01 AC 8 ms
9,216 KB
testcase_02 AC 7 ms
9,216 KB
testcase_03 AC 8 ms
9,216 KB
testcase_04 AC 7 ms
9,216 KB
testcase_05 AC 7 ms
9,216 KB
testcase_06 AC 8 ms
9,216 KB
testcase_07 AC 7 ms
9,216 KB
testcase_08 AC 8 ms
9,216 KB
testcase_09 AC 7 ms
9,088 KB
testcase_10 AC 8 ms
9,216 KB
testcase_11 AC 7 ms
9,216 KB
testcase_12 AC 8 ms
9,216 KB
testcase_13 AC 7 ms
9,216 KB
testcase_14 AC 8 ms
9,216 KB
testcase_15 AC 7 ms
9,344 KB
testcase_16 AC 8 ms
9,216 KB
testcase_17 AC 9 ms
9,216 KB
testcase_18 AC 8 ms
9,088 KB
testcase_19 AC 9 ms
9,216 KB
testcase_20 AC 8 ms
9,344 KB
testcase_21 AC 8 ms
9,088 KB
testcase_22 AC 9 ms
9,216 KB
testcase_23 AC 8 ms
9,472 KB
testcase_24 AC 230 ms
13,788 KB
testcase_25 AC 280 ms
14,940 KB
testcase_26 AC 152 ms
12,072 KB
testcase_27 AC 283 ms
14,808 KB
testcase_28 AC 164 ms
12,716 KB
testcase_29 AC 311 ms
15,704 KB
testcase_30 AC 159 ms
12,328 KB
testcase_31 AC 101 ms
11,152 KB
testcase_32 AC 356 ms
16,476 KB
testcase_33 AC 184 ms
12,840 KB
testcase_34 AC 242 ms
14,124 KB
testcase_35 AC 377 ms
17,244 KB
testcase_36 AC 48 ms
9,988 KB
testcase_37 AC 112 ms
11,280 KB
testcase_38 AC 315 ms
15,516 KB
testcase_39 AC 248 ms
13,868 KB
testcase_40 AC 299 ms
15,576 KB
testcase_41 AC 32 ms
9,472 KB
testcase_42 AC 355 ms
16,220 KB
testcase_43 AC 320 ms
15,580 KB
testcase_44 AC 380 ms
17,112 KB
testcase_45 AC 393 ms
17,004 KB
testcase_46 AC 390 ms
17,116 KB
testcase_47 AC 381 ms
17,116 KB
testcase_48 AC 394 ms
16,968 KB
testcase_49 AC 380 ms
16,984 KB
testcase_50 AC 390 ms
17,116 KB
testcase_51 AC 375 ms
17,244 KB
testcase_52 AC 434 ms
17,112 KB
testcase_53 AC 387 ms
16,984 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