結果

問題 No.110 しましまピラミッド
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-27 19:33:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 1,216 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,976 KB
実行使用メモリ 55,396 KB
最終ジャッジ日時 2024-06-24 21:27:46
合計ジャッジ時間 2,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,132 KB
testcase_01 AC 40 ms
55,192 KB
testcase_02 AC 43 ms
54,516 KB
testcase_03 AC 43 ms
54,732 KB
testcase_04 AC 39 ms
54,924 KB
testcase_05 AC 39 ms
54,128 KB
testcase_06 AC 39 ms
53,660 KB
testcase_07 AC 39 ms
54,232 KB
testcase_08 AC 39 ms
55,180 KB
testcase_09 AC 41 ms
53,892 KB
testcase_10 AC 40 ms
53,692 KB
testcase_11 AC 39 ms
53,896 KB
testcase_12 AC 39 ms
54,864 KB
testcase_13 AC 40 ms
53,856 KB
testcase_14 AC 39 ms
54,148 KB
testcase_15 AC 41 ms
54,888 KB
testcase_16 AC 39 ms
53,896 KB
testcase_17 AC 41 ms
55,396 KB
testcase_18 AC 40 ms
54,540 KB
testcase_19 AC 39 ms
55,044 KB
testcase_20 AC 39 ms
53,884 KB
testcase_21 AC 39 ms
54,216 KB
testcase_22 AC 40 ms
55,008 KB
testcase_23 AC 40 ms
53,672 KB
testcase_24 AC 40 ms
54,708 KB
testcase_25 AC 39 ms
54,912 KB
testcase_26 AC 39 ms
53,912 KB
testcase_27 AC 39 ms
54,332 KB
testcase_28 AC 39 ms
54,508 KB
testcase_29 AC 39 ms
54,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import copy
W_ = copy.copy(W)
B_ = copy.copy(B)

W_.sort()
B_.sort()

# W > B
cur = W_.pop()
cnt1 = 1
while True:
    if cnt1%2 == 1:
        while B_:
            if B_[-1] >= cur:
                B_.pop()
            else:
                cur = B_.pop()
                cnt1 += 1
                break
        else:
            break
    else:
        while W_:
            if W_[-1] >= cur:
                W_.pop()
            else:
                cur = W_.pop()
                cnt1 += 1
                break
        else:
            break
W_ = copy.copy(W)
B_ = copy.copy(B)

W_.sort()
B_.sort()

# B > W
cur = B_.pop()
cnt2 = 1
while True:
    if cnt2%2 == 1:
        while W_:
            if W_[-1] >= cur:
                W_.pop()
            else:
                cur = W_.pop()
                cnt2 += 1
                break
        else:
            break
    else:
        while B_:
            if B_[-1] >= cur:
                B_.pop()
            else:
                cur = B_.pop()
                cnt2 += 1
                break
        else:
            break
print(max(cnt1, cnt2))
0