結果

問題 No.54 Happy Hallowe'en
ユーザー convexineqconvexineq
提出日時 2020-12-11 08:34:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 163 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 77,792 KB
最終ジャッジ日時 2024-09-19 21:11:22
合計ジャッジ時間 2,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,120 KB
testcase_01 AC 36 ms
53,424 KB
testcase_02 AC 33 ms
52,524 KB
testcase_03 AC 33 ms
52,500 KB
testcase_04 AC 71 ms
76,648 KB
testcase_05 AC 76 ms
77,168 KB
testcase_06 AC 82 ms
76,956 KB
testcase_07 AC 85 ms
77,184 KB
testcase_08 AC 94 ms
77,268 KB
testcase_09 AC 95 ms
77,644 KB
testcase_10 AC 34 ms
53,284 KB
testcase_11 AC 35 ms
52,440 KB
testcase_12 AC 85 ms
77,792 KB
testcase_13 AC 85 ms
77,600 KB
testcase_14 AC 34 ms
53,164 KB
testcase_15 AC 36 ms
52,068 KB
testcase_16 AC 35 ms
52,552 KB
testcase_17 AC 33 ms
52,748 KB
testcase_18 AC 32 ms
53,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
vt = [list(map(int,input().split())) for _ in range(n)]
vt.sort(key=sum)
dp = 1
for v,t in vt:
    dp |= (dp&(1<<t)-1)<<v
print(dp.bit_length()-1)
0