結果

問題 No.1570 Blocks
ユーザー ygd.ygd.
提出日時 2021-06-29 18:14:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 84,820 KB
最終ジャッジ日時 2024-06-25 20:26:09
合計ジャッジ時間 10,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,416 KB
testcase_01 AC 41 ms
52,180 KB
testcase_02 AC 163 ms
79,988 KB
testcase_03 AC 190 ms
81,172 KB
testcase_04 AC 150 ms
79,312 KB
testcase_05 AC 153 ms
79,536 KB
testcase_06 AC 157 ms
79,648 KB
testcase_07 AC 74 ms
74,036 KB
testcase_08 AC 189 ms
81,416 KB
testcase_09 AC 207 ms
81,472 KB
testcase_10 AC 180 ms
81,092 KB
testcase_11 AC 194 ms
81,100 KB
testcase_12 AC 214 ms
81,468 KB
testcase_13 AC 212 ms
81,492 KB
testcase_14 AC 217 ms
81,492 KB
testcase_15 AC 129 ms
79,352 KB
testcase_16 AC 217 ms
81,496 KB
testcase_17 AC 130 ms
79,736 KB
testcase_18 AC 184 ms
81,124 KB
testcase_19 AC 131 ms
81,144 KB
testcase_20 AC 126 ms
79,408 KB
testcase_21 AC 176 ms
81,088 KB
testcase_22 AC 42 ms
53,436 KB
testcase_23 AC 39 ms
53,488 KB
testcase_24 AC 38 ms
53,076 KB
testcase_25 AC 39 ms
53,364 KB
testcase_26 AC 39 ms
52,632 KB
testcase_27 AC 39 ms
53,496 KB
testcase_28 AC 40 ms
53,376 KB
testcase_29 AC 38 ms
52,944 KB
testcase_30 AC 38 ms
53,620 KB
testcase_31 AC 38 ms
52,944 KB
testcase_32 AC 206 ms
81,860 KB
testcase_33 AC 214 ms
81,620 KB
testcase_34 AC 197 ms
81,144 KB
testcase_35 AC 211 ms
81,596 KB
testcase_36 AC 210 ms
81,504 KB
testcase_37 AC 206 ms
81,724 KB
testcase_38 WA -
testcase_39 AC 212 ms
81,492 KB
testcase_40 AC 209 ms
81,360 KB
testcase_41 AC 220 ms
81,600 KB
testcase_42 AC 240 ms
84,820 KB
testcase_43 AC 238 ms
84,688 KB
testcase_44 AC 235 ms
84,684 KB
testcase_45 AC 238 ms
84,568 KB
testcase_46 AC 221 ms
81,132 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
    for i in range(N):
        a,b = Z[i]
        if w > b:
            print("No");exit()
        w += a
    print("Yes")

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