結果

問題 No.1570 Blocks
ユーザー MaboyMaboy
提出日時 2021-06-28 17:38:40
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 371 bytes
コンパイル時間 3,560 ms
コンパイル使用メモリ 138,588 KB
実行使用メモリ 22,328 KB
最終ジャッジ日時 2024-06-25 12:31:18
合計ジャッジ時間 11,998 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,088 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 185 ms
18,000 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 142 ms
16,460 KB
testcase_07 WA -
testcase_08 AC 181 ms
17,968 KB
testcase_09 AC 207 ms
18,888 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 213 ms
19,104 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 94 ms
13,636 KB
testcase_18 WA -
testcase_19 AC 94 ms
13,660 KB
testcase_20 WA -
testcase_21 AC 159 ms
17,124 KB
testcase_22 WA -
testcase_23 AC 9 ms
9,344 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 9 ms
9,344 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 8 ms
9,344 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 220 ms
19,300 KB
testcase_34 WA -
testcase_35 AC 212 ms
19,088 KB
testcase_36 WA -
testcase_37 AC 204 ms
18,896 KB
testcase_38 AC 209 ms
19,028 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 216 ms
19,128 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = ""
for i in k{
    if s > d[i]![1]{
        t = "No"
        break
    }else{
        s += d[i]![0]
    }
}
print("Yes")
0