結果

問題 No.1570 Blocks
ユーザー ygd.ygd.
提出日時 2021-06-29 18:48:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,900 KB
実行使用メモリ 84,820 KB
最終ジャッジ日時 2024-06-25 21:08:08
合計ジャッジ時間 9,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 163 ms
79,844 KB
testcase_03 AC 194 ms
81,408 KB
testcase_04 AC 151 ms
79,360 KB
testcase_05 AC 158 ms
79,360 KB
testcase_06 AC 156 ms
79,616 KB
testcase_07 AC 73 ms
74,496 KB
testcase_08 AC 184 ms
81,152 KB
testcase_09 AC 207 ms
81,732 KB
testcase_10 AC 182 ms
81,280 KB
testcase_11 AC 190 ms
81,664 KB
testcase_12 AC 212 ms
81,672 KB
testcase_13 AC 212 ms
81,408 KB
testcase_14 AC 212 ms
81,440 KB
testcase_15 AC 128 ms
79,536 KB
testcase_16 AC 212 ms
81,620 KB
testcase_17 AC 134 ms
81,152 KB
testcase_18 AC 184 ms
81,496 KB
testcase_19 AC 131 ms
81,300 KB
testcase_20 AC 126 ms
79,488 KB
testcase_21 AC 174 ms
81,024 KB
testcase_22 AC 38 ms
52,224 KB
testcase_23 AC 38 ms
52,224 KB
testcase_24 AC 39 ms
52,736 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 41 ms
52,096 KB
testcase_27 AC 39 ms
52,352 KB
testcase_28 AC 39 ms
52,736 KB
testcase_29 AC 39 ms
52,096 KB
testcase_30 AC 39 ms
52,224 KB
testcase_31 AC 39 ms
52,736 KB
testcase_32 AC 208 ms
81,344 KB
testcase_33 AC 212 ms
81,476 KB
testcase_34 AC 202 ms
81,280 KB
testcase_35 AC 219 ms
81,360 KB
testcase_36 AC 209 ms
81,092 KB
testcase_37 AC 204 ms
81,348 KB
testcase_38 AC 210 ms
81,344 KB
testcase_39 AC 214 ms
81,368 KB
testcase_40 AC 207 ms
81,620 KB
testcase_41 AC 218 ms
81,352 KB
testcase_42 AC 235 ms
84,568 KB
testcase_43 AC 239 ms
84,696 KB
testcase_44 AC 236 ms
84,820 KB
testcase_45 AC 237 ms
84,812 KB
testcase_46 AC 223 ms
81,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    Z = []
    for i in range(N):
        a,b = map(int,input().split())
        Z.append((a,b))
    Z.sort(key = lambda x: x[0] + x[1])
    #print(Z)

    w = 0
    for i in range(N):
        a,b = Z[i]
        if w > b:
            print("No");exit()
        w += a
    print("Yes")

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