結果

問題 No.1583 Building Blocks
ユーザー ygd.ygd.
提出日時 2021-07-02 23:16:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 87,124 KB
実行使用メモリ 75,748 KB
最終ジャッジ日時 2023-09-11 23:42:28
合計ジャッジ時間 5,443 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,444 KB
testcase_01 AC 68 ms
71,232 KB
testcase_02 AC 74 ms
71,348 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 67 ms
71,496 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 71 ms
71,432 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 77 ms
71,532 KB
testcase_25 AC 69 ms
71,400 KB
testcase_26 AC 81 ms
75,704 KB
testcase_27 AC 75 ms
71,440 KB
testcase_28 AC 83 ms
75,668 KB
testcase_29 AC 74 ms
71,088 KB
testcase_30 AC 71 ms
71,276 KB
testcase_31 WA -
testcase_32 AC 76 ms
71,492 KB
testcase_33 WA -
testcase_34 AC 70 ms
71,232 KB
testcase_35 AC 76 ms
71,088 KB
testcase_36 WA -
testcase_37 AC 71 ms
71,472 KB
testcase_38 AC 70 ms
71,428 KB
testcase_39 AC 69 ms
71,520 KB
testcase_40 AC 69 ms
71,352 KB
testcase_41 AC 68 ms
71,472 KB
testcase_42 AC 69 ms
71,476 KB
testcase_43 AC 69 ms
71,428 KB
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    Z = []
    for i in range(N):
        w,s = map(int,input().split())
        Z.append((s,w))
    Z.sort(key = lambda x: x[0] + x[1])
    ans = 0
    weight = 0
    for i in range(N):
        s,w = Z[i]
        if weight <= s:
            ans += 1
            weight += w

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