結果

問題 No.1460 Max of Min
ユーザー shotoyooshotoyoo
提出日時 2021-03-31 22:09:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,968 KB
最終ジャッジ日時 2024-05-09 08:09:00
合計ジャッジ時間 51,696 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 31 ms
52,096 KB
testcase_02 AC 41 ms
60,416 KB
testcase_03 AC 451 ms
83,456 KB
testcase_04 AC 452 ms
83,072 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 1,061 ms
83,200 KB
testcase_07 AC 1,025 ms
82,816 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 868 ms
83,456 KB
testcase_11 WA -
testcase_12 AC 305 ms
78,720 KB
testcase_13 AC 461 ms
82,688 KB
testcase_14 AC 201 ms
80,000 KB
testcase_15 AC 133 ms
77,952 KB
testcase_16 AC 402 ms
82,432 KB
testcase_17 AC 277 ms
80,896 KB
testcase_18 WA -
testcase_19 AC 244 ms
80,384 KB
testcase_20 AC 79 ms
76,160 KB
testcase_21 WA -
testcase_22 AC 265 ms
81,024 KB
testcase_23 WA -
testcase_24 AC 645 ms
81,152 KB
testcase_25 AC 69 ms
76,288 KB
testcase_26 AC 984 ms
82,944 KB
testcase_27 AC 213 ms
78,464 KB
testcase_28 AC 84 ms
76,544 KB
testcase_29 AC 297 ms
81,408 KB
testcase_30 AC 438 ms
82,816 KB
testcase_31 AC 527 ms
81,152 KB
testcase_32 AC 823 ms
82,560 KB
testcase_33 AC 337 ms
79,616 KB
testcase_34 AC 229 ms
80,128 KB
testcase_35 AC 200 ms
77,952 KB
testcase_36 AC 114 ms
77,056 KB
testcase_37 AC 590 ms
81,408 KB
testcase_38 AC 413 ms
82,944 KB
testcase_39 AC 377 ms
79,744 KB
testcase_40 AC 163 ms
78,848 KB
testcase_41 AC 133 ms
78,080 KB
testcase_42 AC 102 ms
77,184 KB
testcase_43 AC 248 ms
80,512 KB
testcase_44 AC 374 ms
82,304 KB
testcase_45 AC 85 ms
76,544 KB
testcase_46 AC 409 ms
79,872 KB
testcase_47 AC 249 ms
81,024 KB
testcase_48 WA -
testcase_49 AC 328 ms
81,920 KB
testcase_50 AC 80 ms
76,288 KB
testcase_51 WA -
testcase_52 AC 119 ms
77,824 KB
testcase_53 AC 284 ms
81,280 KB
testcase_54 AC 473 ms
82,944 KB
testcase_55 AC 488 ms
83,968 KB
testcase_56 AC 474 ms
83,328 KB
testcase_57 AC 1,008 ms
83,328 KB
testcase_58 WA -
testcase_59 AC 476 ms
83,584 KB
testcase_60 AC 468 ms
83,328 KB
testcase_61 AC 1,016 ms
82,944 KB
testcase_62 AC 994 ms
83,456 KB
testcase_63 AC 460 ms
82,816 KB
testcase_64 AC 997 ms
83,456 KB
testcase_65 AC 997 ms
83,200 KB
testcase_66 AC 1,023 ms
83,584 KB
testcase_67 AC 1,009 ms
83,328 KB
testcase_68 AC 1,048 ms
83,072 KB
testcase_69 AC 1,023 ms
83,200 KB
testcase_70 AC 468 ms
83,200 KB
testcase_71 AC 1,034 ms
82,944 KB
testcase_72 AC 994 ms
82,944 KB
testcase_73 AC 473 ms
82,944 KB
testcase_74 AC 439 ms
82,944 KB
testcase_75 AC 1,037 ms
82,944 KB
testcase_76 AC 436 ms
82,816 KB
testcase_77 AC 474 ms
83,328 KB
testcase_78 AC 1,021 ms
82,944 KB
testcase_79 AC 1,032 ms
83,328 KB
testcase_80 AC 852 ms
83,328 KB
testcase_81 AC 439 ms
83,968 KB
testcase_82 AC 1,009 ms
82,944 KB
testcase_83 AC 863 ms
83,456 KB
testcase_84 AC 835 ms
83,200 KB
testcase_85 AC 849 ms
82,944 KB
testcase_86 AC 828 ms
83,200 KB
testcase_87 AC 843 ms
82,816 KB
testcase_88 AC 847 ms
83,200 KB
testcase_89 AC 863 ms
83,456 KB
testcase_90 AC 826 ms
83,072 KB
testcase_91 AC 906 ms
83,200 KB
testcase_92 AC 849 ms
83,584 KB
testcase_93 AC 814 ms
82,944 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(100*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