結果

問題 No.1460 Max of Min
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-12-17 00:52:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 74,096 KB
最終ジャッジ日時 2024-12-17 00:53:01
合計ジャッジ時間 10,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,064 KB
testcase_01 AC 38 ms
52,820 KB
testcase_02 AC 37 ms
52,344 KB
testcase_03 AC 64 ms
64,440 KB
testcase_04 AC 64 ms
65,816 KB
testcase_05 AC 38 ms
52,956 KB
testcase_06 AC 80 ms
66,204 KB
testcase_07 WA -
testcase_08 AC 40 ms
53,660 KB
testcase_09 AC 38 ms
52,532 KB
testcase_10 AC 75 ms
67,892 KB
testcase_11 WA -
testcase_12 AC 59 ms
65,780 KB
testcase_13 AC 70 ms
66,416 KB
testcase_14 AC 62 ms
65,128 KB
testcase_15 AC 57 ms
65,472 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 62 ms
66,016 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 47 ms
60,288 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 48 ms
61,844 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 62 ms
66,888 KB
testcase_32 WA -
testcase_33 AC 57 ms
66,324 KB
testcase_34 AC 57 ms
64,960 KB
testcase_35 AC 54 ms
64,164 KB
testcase_36 AC 52 ms
62,680 KB
testcase_37 WA -
testcase_38 AC 78 ms
67,332 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 71 ms
66,208 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 72 ms
66,072 KB
testcase_54 AC 86 ms
67,908 KB
testcase_55 AC 68 ms
66,544 KB
testcase_56 AC 80 ms
68,832 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 79 ms
66,684 KB
testcase_61 AC 80 ms
66,728 KB
testcase_62 AC 68 ms
66,712 KB
testcase_63 AC 67 ms
66,660 KB
testcase_64 AC 85 ms
67,132 KB
testcase_65 WA -
testcase_66 AC 91 ms
74,096 KB
testcase_67 AC 70 ms
67,200 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 AC 87 ms
67,380 KB
testcase_73 AC 81 ms
66,300 KB
testcase_74 AC 83 ms
68,616 KB
testcase_75 AC 67 ms
67,488 KB
testcase_76 AC 81 ms
67,440 KB
testcase_77 AC 70 ms
67,184 KB
testcase_78 AC 69 ms
66,984 KB
testcase_79 AC 71 ms
67,448 KB
testcase_80 AC 66 ms
67,676 KB
testcase_81 AC 82 ms
67,220 KB
testcase_82 AC 83 ms
67,828 KB
testcase_83 AC 71 ms
66,872 KB
testcase_84 AC 69 ms
67,992 KB
testcase_85 AC 79 ms
66,676 KB
testcase_86 AC 66 ms
66,860 KB
testcase_87 AC 71 ms
66,876 KB
testcase_88 AC 75 ms
67,268 KB
testcase_89 AC 72 ms
67,672 KB
testcase_90 AC 75 ms
67,952 KB
testcase_91 AC 73 ms
68,180 KB
testcase_92 AC 69 ms
66,868 KB
testcase_93 AC 73 ms
67,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K, N = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

def calc():
    res = -10**18
    for i in range(1, K+1):
        res = max(res, min(A[-i], B[-i]))
    return res

for _ in range(3*K+1):
    A.append(calc())


try:
    print(A[N])
except:
    memo = []
    for a in A[::-1]:
        if memo and memo[0]==a:
            break
        memo.append(a)
    m = len(memo)
    n = len(A)
    d = N+1 - n
    d %= m
    print(memo[::-1][d-1])
0