結果

問題 No.1570 Blocks
ユーザー MaboyMaboy
提出日時 2021-06-28 17:55:45
言語 Swift
(5.10.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 5,571 ms
コンパイル使用メモリ 139,060 KB
実行使用メモリ 22,196 KB
最終ジャッジ日時 2024-06-25 12:50:08
合計ジャッジ時間 12,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
9,216 KB
testcase_01 AC 9 ms
9,216 KB
testcase_02 AC 151 ms
16,800 KB
testcase_03 AC 182 ms
18,256 KB
testcase_04 AC 134 ms
16,240 KB
testcase_05 AC 141 ms
16,356 KB
testcase_06 AC 140 ms
16,464 KB
testcase_07 AC 27 ms
10,364 KB
testcase_08 AC 176 ms
17,836 KB
testcase_09 AC 206 ms
19,020 KB
testcase_10 AC 172 ms
17,448 KB
testcase_11 AC 189 ms
17,976 KB
testcase_12 AC 212 ms
19,232 KB
testcase_13 AC 214 ms
19,020 KB
testcase_14 AC 221 ms
19,456 KB
testcase_15 AC 101 ms
13,828 KB
testcase_16 AC 215 ms
19,224 KB
testcase_17 AC 92 ms
13,640 KB
testcase_18 AC 182 ms
17,824 KB
testcase_19 AC 95 ms
13,672 KB
testcase_20 AC 102 ms
13,764 KB
testcase_21 AC 164 ms
17,220 KB
testcase_22 AC 8 ms
9,344 KB
testcase_23 AC 8 ms
9,216 KB
testcase_24 AC 8 ms
9,344 KB
testcase_25 AC 9 ms
9,344 KB
testcase_26 AC 9 ms
9,344 KB
testcase_27 AC 9 ms
9,344 KB
testcase_28 AC 9 ms
9,344 KB
testcase_29 AC 9 ms
9,344 KB
testcase_30 AC 9 ms
9,216 KB
testcase_31 AC 9 ms
9,216 KB
testcase_32 AC 196 ms
19,156 KB
testcase_33 AC 215 ms
19,376 KB
testcase_34 AC 203 ms
18,792 KB
testcase_35 AC 213 ms
19,216 KB
testcase_36 AC 213 ms
19,036 KB
testcase_37 AC 203 ms
18,892 KB
testcase_38 AC 207 ms
19,032 KB
testcase_39 AC 221 ms
19,284 KB
testcase_40 AC 213 ms
19,012 KB
testcase_41 AC 210 ms
19,132 KB
testcase_42 AC 228 ms
22,196 KB
testcase_43 AC 230 ms
22,196 KB
testcase_44 AC 230 ms
22,160 KB
testcase_45 AC 229 ms
22,160 KB
testcase_46 AC 209 ms
22,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let n = Int(readLine()!)!
var ab = [[Int]]()
for _ in 0..<n{
    ab += [readLine()!.split(separator: " ").map{Int($0)!}]
}
var d = [Int:[Int]]()
for i in ab{
    d[i[0] + i[1]] = i
}
var k : Array = Array(d.keys)
k.sort(){$0 < $1}

var s = 0
var t = "Yes"
for i in k{
    if s > d[i]![1]{
        t = "No"
        break
    }else{
        s += d[i]![0]
    }
}
print(t)
0