結果

問題 No.110 しましまピラミッド
ユーザー kohei2019kohei2019
提出日時 2021-06-02 21:23:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 1,021 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 53,632 KB
最終ジャッジ日時 2024-11-15 16:59:32
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,376 KB
testcase_01 AC 47 ms
52,992 KB
testcase_02 AC 46 ms
53,248 KB
testcase_03 AC 45 ms
53,120 KB
testcase_04 AC 45 ms
53,632 KB
testcase_05 AC 45 ms
53,120 KB
testcase_06 AC 45 ms
53,120 KB
testcase_07 AC 45 ms
53,632 KB
testcase_08 AC 45 ms
53,120 KB
testcase_09 AC 45 ms
53,248 KB
testcase_10 AC 45 ms
53,632 KB
testcase_11 AC 45 ms
53,120 KB
testcase_12 AC 45 ms
53,248 KB
testcase_13 AC 44 ms
53,504 KB
testcase_14 AC 45 ms
53,120 KB
testcase_15 AC 45 ms
53,632 KB
testcase_16 AC 45 ms
52,992 KB
testcase_17 AC 45 ms
53,376 KB
testcase_18 AC 44 ms
53,504 KB
testcase_19 AC 45 ms
52,992 KB
testcase_20 AC 45 ms
53,632 KB
testcase_21 AC 45 ms
53,120 KB
testcase_22 AC 44 ms
53,376 KB
testcase_23 AC 45 ms
53,632 KB
testcase_24 AC 45 ms
53,248 KB
testcase_25 AC 44 ms
53,248 KB
testcase_26 AC 44 ms
53,120 KB
testcase_27 AC 44 ms
52,992 KB
testcase_28 AC 44 ms
53,120 KB
testcase_29 AC 45 ms
53,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
Na = int(input())
lsW1 = list(map(int,input().split()))
lsW1.sort()
lsW = copy.copy(lsW1)
Nb = int(input())
lsB1 = list(map(int,input().split()))
lsB1.sort()
lsB = copy.copy(lsB1)

cnt1 = 1
now = lsW.pop()
while True:
    if cnt1 % 2 == 1:
        if not lsB:
            break
        if now > lsB[-1]:
            cnt1 += 1
            now = lsB.pop()
        else:
            lsB.pop()
    if cnt1 % 2 == 0:
        if not lsW:
            break
        if now > lsW[-1]:
            cnt1 += 1
            now = lsW.pop()
        else:
            lsW.pop()

lsW = copy.copy(lsW1)
lsB = copy.copy(lsB1)
cnt2 = 1
now = lsB.pop()
while True:
    if cnt2 % 2 == 1:
        if not lsW:
            break
        if now > lsW[-1]:
            cnt2 += 1
            now = lsW.pop()
        else:
            lsW.pop()
    if cnt2 % 2 == 0:
        if not lsB:
            break
        if now > lsB[-1]:
            cnt2 += 1
            now = lsB.pop()
        else:
            lsB.pop()
print(max(cnt1,cnt2))
0