結果

問題 No.110 しましまピラミッド
ユーザー tcltktcltk
提出日時 2021-01-17 02:57:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 1,406 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 89,140 KB
最終ジャッジ日時 2024-11-28 22:57:27
合計ジャッジ時間 5,465 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
88,780 KB
testcase_01 AC 127 ms
89,048 KB
testcase_02 AC 126 ms
89,040 KB
testcase_03 AC 125 ms
89,068 KB
testcase_04 AC 124 ms
88,924 KB
testcase_05 AC 124 ms
88,940 KB
testcase_06 AC 123 ms
88,972 KB
testcase_07 AC 123 ms
88,972 KB
testcase_08 AC 130 ms
88,980 KB
testcase_09 AC 127 ms
89,024 KB
testcase_10 AC 127 ms
89,076 KB
testcase_11 AC 128 ms
88,568 KB
testcase_12 AC 122 ms
88,996 KB
testcase_13 AC 124 ms
88,928 KB
testcase_14 AC 123 ms
89,044 KB
testcase_15 AC 125 ms
88,764 KB
testcase_16 AC 123 ms
88,968 KB
testcase_17 AC 123 ms
88,968 KB
testcase_18 AC 125 ms
88,924 KB
testcase_19 AC 123 ms
88,912 KB
testcase_20 AC 126 ms
88,944 KB
testcase_21 AC 120 ms
88,804 KB
testcase_22 AC 124 ms
88,972 KB
testcase_23 AC 121 ms
88,868 KB
testcase_24 AC 125 ms
89,048 KB
testcase_25 AC 129 ms
89,140 KB
testcase_26 AC 124 ms
89,012 KB
testcase_27 AC 121 ms
88,940 KB
testcase_28 AC 120 ms
89,028 KB
testcase_29 AC 125 ms
88,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """2
# 1 3
# 1
# 2
# """
# sys.stdin = io.StringIO(_INPUT)


def solve(NW, W, NB, B, flag):
    i1 = 0
    i2 = 0
    l = 10**10
    n = 0
    while True:
        if flag:
            while True:
                if i1 == NW:
                    return n
                elif W[i1] < l:
                    l = W[i1]
                    i1 += 1
                    n += 1
                    break
                i1 += 1
        else:
            while True:
                if i2 == NB:
                    return n
                elif B[i2] < l:
                    l = B[i2]
                    i2 += 1
                    n += 1
                    break
                i2 += 1
        flag = not flag

def main():
    NW = int(input())
    W = sorted(list(map(int, input().split())), reverse=True)
    NB = int(input())
    B = sorted(list(map(int, input().split())), reverse=True)


    n1 = solve(NW, W, NB, B, True)
    n2 = solve(NW, W, NB, B, False)
    print(max(n1, n2))


if __name__ == '__main__':
    main()
0