結果
| 問題 |
No.1570 Blocks
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-06-27 13:48:54 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 838 bytes |
| コンパイル時間 | 175 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 32,968 KB |
| 最終ジャッジ日時 | 2024-06-25 11:30:52 |
| 合計ジャッジ時間 | 10,395 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 44 WA * 1 |
ソースコード
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()