結果

問題 No.1460 Max of Min
ユーザー shotoyooshotoyoo
提出日時 2021-03-31 21:17:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-05-09 04:35:54
合計ジャッジ時間 15,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 126 ms
76,544 KB
testcase_04 AC 126 ms
76,416 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 197 ms
76,544 KB
testcase_07 AC 194 ms
76,928 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 178 ms
76,416 KB
testcase_11 WA -
testcase_12 AC 99 ms
76,416 KB
testcase_13 AC 128 ms
76,416 KB
testcase_14 AC 93 ms
76,416 KB
testcase_15 AC 81 ms
76,160 KB
testcase_16 AC 124 ms
76,416 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 66 ms
68,608 KB
testcase_21 WA -
testcase_22 AC 102 ms
76,288 KB
testcase_23 AC 57 ms
64,256 KB
testcase_24 WA -
testcase_25 AC 58 ms
64,256 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 68 ms
73,472 KB
testcase_29 WA -
testcase_30 AC 128 ms
76,672 KB
testcase_31 AC 133 ms
76,544 KB
testcase_32 AC 172 ms
76,288 KB
testcase_33 AC 108 ms
76,416 KB
testcase_34 AC 99 ms
76,160 KB
testcase_35 AC 89 ms
76,160 KB
testcase_36 AC 77 ms
76,032 KB
testcase_37 AC 138 ms
76,288 KB
testcase_38 AC 125 ms
76,416 KB
testcase_39 AC 111 ms
76,416 KB
testcase_40 AC 86 ms
76,288 KB
testcase_41 AC 82 ms
76,288 KB
testcase_42 AC 77 ms
76,416 KB
testcase_43 WA -
testcase_44 AC 120 ms
76,672 KB
testcase_45 AC 67 ms
70,144 KB
testcase_46 WA -
testcase_47 AC 101 ms
76,288 KB
testcase_48 WA -
testcase_49 AC 112 ms
76,672 KB
testcase_50 AC 68 ms
72,576 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 106 ms
76,544 KB
testcase_54 AC 136 ms
76,416 KB
testcase_55 AC 134 ms
76,672 KB
testcase_56 AC 134 ms
76,544 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 135 ms
76,672 KB
testcase_61 AC 194 ms
76,544 KB
testcase_62 AC 193 ms
76,416 KB
testcase_63 AC 136 ms
76,672 KB
testcase_64 AC 192 ms
76,416 KB
testcase_65 WA -
testcase_66 AC 197 ms
76,800 KB
testcase_67 AC 194 ms
76,416 KB
testcase_68 WA -
testcase_69 WA -
testcase_70 AC 135 ms
76,800 KB
testcase_71 WA -
testcase_72 AC 193 ms
76,416 KB
testcase_73 AC 136 ms
76,544 KB
testcase_74 AC 131 ms
76,672 KB
testcase_75 AC 198 ms
76,672 KB
testcase_76 AC 130 ms
76,672 KB
testcase_77 AC 130 ms
76,416 KB
testcase_78 AC 195 ms
76,416 KB
testcase_79 AC 195 ms
76,544 KB
testcase_80 AC 178 ms
76,416 KB
testcase_81 AC 131 ms
76,416 KB
testcase_82 AC 190 ms
76,416 KB
testcase_83 AC 179 ms
76,672 KB
testcase_84 AC 176 ms
76,672 KB
testcase_85 AC 175 ms
76,416 KB
testcase_86 AC 173 ms
76,672 KB
testcase_87 AC 176 ms
76,416 KB
testcase_88 AC 175 ms
76,544 KB
testcase_89 AC 176 ms
76,544 KB
testcase_90 AC 175 ms
76,800 KB
testcase_91 AC 176 ms
76,672 KB
testcase_92 AC 177 ms
76,544 KB
testcase_93 AC 174 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")

k,n = list(map(int, input().split()))
a = list(map(int, input().split()))
b = list(map(int, input().split()))
def sub(a,b):
    return max([min(a[i], b[i]) for i in range(k)])
l = a[:]
for i in range(10*k+1):
    l.append(sub(l[-k:], b))
if n<len(l):
    print(l[n])
else:
    tmp = l[-k:]
    print(tmp[(n-len(l))%k])
0