結果

問題 No.1570 Blocks
ユーザー tamatotamato
提出日時 2021-08-06 08:27:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 83,520 KB
最終ジャッジ日時 2024-09-16 21:06:14
合計ジャッジ時間 9,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,508 KB
testcase_01 AC 37 ms
53,752 KB
testcase_02 AC 139 ms
80,112 KB
testcase_03 AC 153 ms
81,148 KB
testcase_04 AC 118 ms
79,880 KB
testcase_05 AC 122 ms
79,760 KB
testcase_06 AC 126 ms
79,876 KB
testcase_07 AC 52 ms
65,832 KB
testcase_08 AC 150 ms
81,504 KB
testcase_09 AC 169 ms
81,244 KB
testcase_10 AC 139 ms
81,244 KB
testcase_11 AC 154 ms
81,348 KB
testcase_12 AC 168 ms
81,696 KB
testcase_13 AC 168 ms
81,120 KB
testcase_14 AC 173 ms
81,688 KB
testcase_15 AC 99 ms
78,260 KB
testcase_16 AC 169 ms
81,220 KB
testcase_17 AC 99 ms
77,812 KB
testcase_18 AC 149 ms
81,144 KB
testcase_19 AC 96 ms
77,828 KB
testcase_20 AC 94 ms
77,872 KB
testcase_21 AC 149 ms
83,520 KB
testcase_22 AC 38 ms
53,064 KB
testcase_23 AC 38 ms
52,392 KB
testcase_24 AC 38 ms
53,304 KB
testcase_25 AC 38 ms
52,380 KB
testcase_26 AC 37 ms
53,192 KB
testcase_27 AC 37 ms
53,148 KB
testcase_28 AC 38 ms
53,688 KB
testcase_29 AC 38 ms
53,408 KB
testcase_30 AC 38 ms
52,464 KB
testcase_31 AC 38 ms
52,476 KB
testcase_32 AC 165 ms
81,464 KB
testcase_33 AC 164 ms
81,288 KB
testcase_34 AC 165 ms
81,116 KB
testcase_35 AC 172 ms
81,256 KB
testcase_36 AC 165 ms
81,364 KB
testcase_37 AC 163 ms
81,256 KB
testcase_38 AC 166 ms
81,204 KB
testcase_39 AC 172 ms
81,428 KB
testcase_40 AC 170 ms
81,228 KB
testcase_41 AC 173 ms
81,476 KB
testcase_42 AC 178 ms
81,132 KB
testcase_43 AC 175 ms
81,084 KB
testcase_44 AC 172 ms
81,516 KB
testcase_45 AC 174 ms
81,340 KB
testcase_46 AC 174 ms
81,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    C = []
    for _ in range(N):
        a, b = map(int, input().split())
        C.append((a, a + b))
    C.sort(key=lambda x: x[1])
    W = 0
    ok = 1
    for a, b in C:
        W += a
        if W > b:
            ok = 0
            break
    if ok:
        print("Yes")
    else:
        print("No")


if __name__ == '__main__':
    main()
0