結果

問題 No.1460 Max of Min
ユーザー 小野寺健小野寺健
提出日時 2021-05-01 14:47:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-19 22:37:46
合計ジャッジ時間 108,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 1,821 ms
10,624 KB
testcase_04 AC 1,867 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 1,816 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 1,854 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 523 ms
10,496 KB
testcase_13 WA -
testcase_14 AC 855 ms
10,624 KB
testcase_15 WA -
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 48 ms
10,624 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 126 ms
10,624 KB
testcase_29 WA -
testcase_30 TLE -
testcase_31 AC 1,148 ms
10,496 KB
testcase_32 WA -
testcase_33 AC 102 ms
10,496 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 31 ms
10,624 KB
testcase_37 WA -
testcase_38 AC 274 ms
10,624 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 201 ms
10,496 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 1,411 ms
10,752 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 1,172 ms
10,752 KB
testcase_54 AC 1,081 ms
10,752 KB
testcase_55 TLE -
testcase_56 AC 732 ms
10,624 KB
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 1,571 ms
10,624 KB
testcase_62 AC 1,565 ms
10,752 KB
testcase_63 AC 31 ms
10,752 KB
testcase_64 AC 30 ms
10,624 KB
testcase_65 WA -
testcase_66 AC 1,472 ms
10,624 KB
testcase_67 AC 55 ms
10,624 KB
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 WA -
testcase_72 AC 1,142 ms
10,752 KB
testcase_73 AC 1,097 ms
10,624 KB
testcase_74 AC 899 ms
10,752 KB
testcase_75 AC 626 ms
10,752 KB
testcase_76 AC 602 ms
10,624 KB
testcase_77 AC 731 ms
10,752 KB
testcase_78 AC 103 ms
10,752 KB
testcase_79 AC 866 ms
10,752 KB
testcase_80 AC 382 ms
10,752 KB
testcase_81 AC 91 ms
10,752 KB
testcase_82 AC 503 ms
10,624 KB
testcase_83 AC 232 ms
10,752 KB
testcase_84 TLE -
testcase_85 AC 1,891 ms
10,880 KB
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 TLE -
testcase_90 AC 1,893 ms
10,624 KB
testcase_91 TLE -
testcase_92 TLE -
testcase_93 AC 1,835 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K, N = map(int, input().split())

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

n = min(K*3+N%K, N)

for i in range(K,n+1):
    m = -float('inf')
    for j in range(K):
        m = max(m, min(A[i-K+j], B[j]))
    A.append(m)

print(A[n])
0