結果

問題 No.1570 Blocks
ユーザー moharan627moharan627
提出日時 2021-06-27 13:48:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 838 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,968 KB
最終ジャッジ日時 2024-06-25 11:30:52
合計ジャッジ時間 10,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 181 ms
25,252 KB
testcase_03 AC 242 ms
28,856 KB
testcase_04 AC 161 ms
23,552 KB
testcase_05 AC 173 ms
24,264 KB
testcase_06 AC 183 ms
24,688 KB
testcase_07 AC 48 ms
12,800 KB
testcase_08 AC 240 ms
28,448 KB
testcase_09 AC 276 ms
31,616 KB
testcase_10 AC 206 ms
27,120 KB
testcase_11 AC 224 ms
28,972 KB
testcase_12 AC 292 ms
32,176 KB
testcase_13 AC 260 ms
32,084 KB
testcase_14 AC 278 ms
32,624 KB
testcase_15 AC 124 ms
20,352 KB
testcase_16 AC 270 ms
32,348 KB
testcase_17 AC 126 ms
19,584 KB
testcase_18 AC 210 ms
28,008 KB
testcase_19 AC 127 ms
19,948 KB
testcase_20 AC 126 ms
20,224 KB
testcase_21 AC 208 ms
26,740 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 29 ms
10,880 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 28 ms
10,752 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 298 ms
32,024 KB
testcase_33 AC 293 ms
32,496 KB
testcase_34 AC 245 ms
30,660 KB
testcase_35 AC 287 ms
31,744 KB
testcase_36 AC 264 ms
31,260 KB
testcase_37 AC 270 ms
30,904 KB
testcase_38 WA -
testcase_39 AC 272 ms
32,372 KB
testcase_40 AC 262 ms
31,556 KB
testcase_41 AC 292 ms
32,216 KB
testcase_42 AC 288 ms
32,804 KB
testcase_43 AC 280 ms
32,928 KB
testcase_44 AC 273 ms
32,968 KB
testcase_45 AC 278 ms
32,708 KB
testcase_46 AC 292 ms
32,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    N = II()
    Block = [0]*N
    Asum = 0
    for n in range(N):
        A,B = MI()
        Block[n] = (A,B)
        Asum += A
    from operator import itemgetter
    Bs = sorted(Block, key = itemgetter(1,0),reverse=True)
    Acum = 0
    #print(Bs)
    for n in range(N):
        a,b = Bs[n]
        Acum += a
        #print(Asum-Acum)
        if(Asum-Acum >b):
            print("No")
            exit()
    print("Yes")
    return
solve()
0