結果

問題 No.1570 Blocks
ユーザー ygd.ygd.
提出日時 2021-06-29 18:42:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,100 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 84,592 KB
最終ジャッジ日時 2024-06-25 20:59:19
合計ジャッジ時間 9,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 42 ms
51,880 KB
testcase_02 AC 172 ms
79,976 KB
testcase_03 AC 207 ms
81,136 KB
testcase_04 AC 163 ms
79,340 KB
testcase_05 AC 167 ms
79,096 KB
testcase_06 AC 165 ms
79,716 KB
testcase_07 AC 82 ms
74,368 KB
testcase_08 AC 197 ms
81,188 KB
testcase_09 AC 226 ms
81,480 KB
testcase_10 AC 190 ms
81,096 KB
testcase_11 AC 205 ms
81,240 KB
testcase_12 AC 235 ms
81,472 KB
testcase_13 AC 231 ms
81,112 KB
testcase_14 AC 233 ms
81,236 KB
testcase_15 AC 139 ms
79,176 KB
testcase_16 AC 226 ms
81,372 KB
testcase_17 AC 145 ms
81,012 KB
testcase_18 AC 198 ms
81,060 KB
testcase_19 AC 144 ms
81,132 KB
testcase_20 AC 139 ms
79,520 KB
testcase_21 AC 192 ms
80,896 KB
testcase_22 AC 42 ms
52,352 KB
testcase_23 AC 43 ms
52,480 KB
testcase_24 AC 44 ms
52,096 KB
testcase_25 AC 43 ms
51,968 KB
testcase_26 AC 43 ms
52,480 KB
testcase_27 AC 44 ms
52,352 KB
testcase_28 AC 43 ms
52,224 KB
testcase_29 AC 42 ms
52,224 KB
testcase_30 AC 43 ms
52,224 KB
testcase_31 AC 43 ms
52,608 KB
testcase_32 AC 231 ms
81,212 KB
testcase_33 AC 234 ms
81,596 KB
testcase_34 AC 218 ms
81,128 KB
testcase_35 AC 235 ms
81,348 KB
testcase_36 AC 220 ms
81,040 KB
testcase_37 AC 224 ms
81,212 KB
testcase_38 WA -
testcase_39 AC 232 ms
81,108 KB
testcase_40 AC 226 ms
81,500 KB
testcase_41 AC 230 ms
81,344 KB
testcase_42 AC 256 ms
84,592 KB
testcase_43 AC 252 ms
84,180 KB
testcase_44 AC 254 ms
84,188 KB
testcase_45 AC 257 ms
84,316 KB
testcase_46 AC 238 ms
81,600 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[1])
    #print(Z)

    w = 0
    hold = -1
    for i in range(N):
        a,b = Z[i]
        if hold != -1: #何かをキープしている
            ha,hb = Z[hold]
            if w <= hb and w + ha <= b: #間にHoldを入れることができる
                hold = -1
                w += ha + a
            else: #入れられない
                if w > b:
                    #print(i,hold,w,b)
                    print("No");exit()
                else:
                    w += a
        else:
            if w > b:
                hold = i - 1
                w -= Z[hold][0]
                if w > b:
                    print("No");exit()
                else:
                    w += a
            else:
                w += a
    if hold == -1:
        print("Yes")
    else:
        ha,hb = Z[hold]
        if w > hb:
            print("No")
        else:
            print("Yes")

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