結果

問題 No.110 しましまピラミッド
ユーザー takakin
提出日時 2020-05-10 13:32:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 682 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-07 14:35:37
合計ジャッジ時間 1,880 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
nw=int(input())
W=[int(i) for i in input().split()]
nb=int(input())
B=[int(i) for i in input().split()]
W.sort(reverse=True)
B.sort(reverse=True)

sign=1
A=[W[0]]
while True:
  cur=A[-1]
  if sign==0:
    S=W
    sign=1
  else:
    S=B
    sign=0
  for i in range(len(S)):
    if S[i]<cur:
      A.append(S[i])
      break
    else:
      continue
  else:
    break
ans=len(A)
sign=0
A=[B[0]]
while True:
  cur=A[-1]
  if sign==0:
    S=W
    sign=1
  else:
    S=B
    sign=0
  for i in range(len(S)):
    if S[i]<cur:
      A.append(S[i])
      break
    else:
      continue
  else:
    break
ans=max(ans,len(A))
print(ans)
0