結果

問題 No.1570 Blocks
ユーザー ああいいああいい
提出日時 2021-12-23 19:25:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,584 KB
最終ジャッジ日時 2024-09-17 17:57:31
合計ジャッジ時間 15,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 305 ms
23,232 KB
testcase_03 AC 371 ms
24,928 KB
testcase_04 AC 252 ms
21,672 KB
testcase_05 AC 287 ms
22,368 KB
testcase_06 AC 289 ms
21,496 KB
testcase_07 AC 58 ms
12,288 KB
testcase_08 AC 374 ms
24,488 KB
testcase_09 AC 423 ms
26,912 KB
testcase_10 AC 314 ms
24,840 KB
testcase_11 AC 349 ms
26,252 KB
testcase_12 AC 448 ms
27,332 KB
testcase_13 AC 413 ms
28,648 KB
testcase_14 AC 415 ms
29,240 KB
testcase_15 AC 189 ms
19,072 KB
testcase_16 AC 413 ms
29,052 KB
testcase_17 AC 193 ms
17,792 KB
testcase_18 AC 328 ms
25,436 KB
testcase_19 AC 190 ms
17,792 KB
testcase_20 AC 189 ms
18,816 KB
testcase_21 AC 323 ms
23,064 KB
testcase_22 AC 26 ms
10,752 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 26 ms
10,880 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 25 ms
10,624 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 25 ms
10,752 KB
testcase_30 AC 26 ms
10,752 KB
testcase_31 AC 26 ms
10,752 KB
testcase_32 AC 437 ms
27,300 KB
testcase_33 AC 455 ms
27,464 KB
testcase_34 AC 395 ms
27,668 KB
testcase_35 AC 460 ms
27,372 KB
testcase_36 AC 426 ms
28,500 KB
testcase_37 AC 434 ms
26,504 KB
testcase_38 WA -
testcase_39 AC 429 ms
29,164 KB
testcase_40 AC 393 ms
28,508 KB
testcase_41 AC 475 ms
27,448 KB
testcase_42 AC 433 ms
29,456 KB
testcase_43 AC 440 ms
29,580 KB
testcase_44 AC 443 ms
29,584 KB
testcase_45 AC 442 ms
29,508 KB
testcase_46 AC 492 ms
27,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = []
for _ in range(N):
    a,b = map(int,input().split())
    l.append((b,a))
l.sort(reverse = True)
Sum = [0] * N
Sum[0] = l[-1][1]
for i in range(1,N):
    Sum[i] = Sum[i-1] + l[-1-i][1]
Sum.insert(0,0)
import sys
for i in range(N):
    b = l[i][0]
    if b < Sum[-2-i]:
        print('No')
        exit()
print('Yes')
        
0