結果

問題 No.54 Happy Hallowe'en
ユーザー dangodango
提出日時 2023-07-09 16:25:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 148,016 KB
最終ジャッジ日時 2024-07-23 13:35:42
合計ジャッジ時間 16,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,516 KB
testcase_01 AC 39 ms
52,644 KB
testcase_02 AC 38 ms
52,888 KB
testcase_03 WA -
testcase_04 AC 436 ms
82,864 KB
testcase_05 AC 719 ms
88,052 KB
testcase_06 WA -
testcase_07 AC 1,538 ms
110,004 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,864 KB
testcase_11 AC 37 ms
52,924 KB
testcase_12 AC 2,866 ms
143,156 KB
testcase_13 AC 2,938 ms
144,120 KB
testcase_14 AC 38 ms
51,756 KB
testcase_15 AC 37 ms
52,664 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
k = []
for n in range(N):
    a, b = map(int, input().split())
    k.append((a, b))
k.sort(key=lambda it: it[0] + it[1])
s = set()
for ik in k:
    s2 = set()
    for i in s:
        if i >= ik[1]:
            break
        else:
            s2.add(i + ik[0])
    s2.add(ik[0])
    s |= s2
ans = list(s)
print(max(ans))
0