結果

問題 No.1583 Building Blocks
ユーザー ygd.ygd.
提出日時 2021-07-02 23:16:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 361 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 63,436 KB
最終ジャッジ日時 2024-06-29 13:04:03
合計ジャッジ時間 2,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 31 ms
51,968 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 30 ms
51,968 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 36 ms
52,992 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
55,168 KB
testcase_25 AC 31 ms
52,096 KB
testcase_26 AC 42 ms
62,044 KB
testcase_27 AC 35 ms
54,156 KB
testcase_28 AC 43 ms
61,784 KB
testcase_29 AC 37 ms
53,424 KB
testcase_30 AC 33 ms
53,488 KB
testcase_31 WA -
testcase_32 AC 42 ms
55,248 KB
testcase_33 WA -
testcase_34 AC 34 ms
53,140 KB
testcase_35 AC 39 ms
54,660 KB
testcase_36 WA -
testcase_37 AC 36 ms
53,420 KB
testcase_38 AC 34 ms
53,056 KB
testcase_39 AC 35 ms
52,608 KB
testcase_40 AC 36 ms
52,388 KB
testcase_41 AC 31 ms
51,940 KB
testcase_42 AC 31 ms
52,216 KB
testcase_43 AC 31 ms
52,028 KB
testcase_44 WA -
testcase_45 AC 31 ms
53,012 KB
権限があれば一括ダウンロードができます

ソースコード

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