結果

問題 No.949 飲酒プログラミングコンテスト
ユーザー ttrttr
提出日時 2020-01-31 17:49:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 69,240 KB
最終ジャッジ日時 2024-09-17 06:52:36
合計ジャッジ時間 2,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,012 KB
testcase_01 AC 34 ms
52,612 KB
testcase_02 AC 32 ms
53,168 KB
testcase_03 AC 32 ms
52,828 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 37 ms
54,560 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 34 ms
53,348 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 49 ms
65,452 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N = int(input())
A = [int(a) for a in input().split()]
B = [int(a) for a in input().split()]
D = [int(a) for a in input().split()]

D.sort()
c = A[0]+B[0]
i = 0
j = 0
ans = 0
while ans < N:
    if A[i+1]+B[j] > A[i]+B[j+1]:
        i += 1
    else:
        j += 1
    if A[i]+B[j] < D[0]:
        break
    ans += 1
    if A[i]+B[j] >= D[-1]:
        D.pop(-1)
        continue
    idx = bisect.bisect_left(D, A[i]+B[j])
    D.pop(idx)

print(ans)
0