結果

問題 No.110 しましまピラミッド
ユーザー lloyzlloyz
提出日時 2023-07-03 22:37:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 1,189 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-07-17 20:38:03
合計ジャッジ時間 2,603 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 40 ms
52,200 KB
testcase_11 AC 39 ms
52,608 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 38 ms
52,608 KB
testcase_15 AC 38 ms
51,840 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 38 ms
51,968 KB
testcase_26 AC 38 ms
52,352 KB
testcase_27 AC 38 ms
52,600 KB
testcase_28 AC 37 ms
52,352 KB
testcase_29 AC 38 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

nw = int(input())
W = list(map(int, input().split()))
nb = int(input())
B = list(map(int, input().split()))

W.sort(reverse=True)
B.sort(reverse=True)
Wc = W[:]
Bc = B[:]

res = 1
l = W[0]
iw, ib = 1, 0
white = False
while True:
    if white:
        while iw < nw:
            ll = W[iw]
            if ll < l:
                break
            iw += 1
        if iw == nw:
            break
        l = ll
        res += 1
        white = False
    else:
        while ib < nb:
            ll = B[ib]
            if ll < l:
                break
            ib += 1
        if ib == nb:
            break
        l = ll
        res += 1
        white = True
ans = res

res = 1
l = B[0]
iw, ib = 0, 1
white = True
while True:
    if white:
        while iw < nw:
            ll = W[iw]
            if ll < l:
                break
            iw += 1
        if iw == nw:
            break
        l = ll
        res += 1
        white = False
    else:
        while ib < nb:
            ll = B[ib]
            if ll < l:
                break
            ib += 1
        if ib == nb:
            break
        l = ll
        res += 1
        white = True
ans = max(ans, res)
print(ans)
0