結果

問題 No.1460 Max of Min
ユーザー googol_S0googol_S0
提出日時 2021-03-31 21:43:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 73,228 KB
最終ジャッジ日時 2024-12-15 16:54:46
合計ジャッジ時間 28,670 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
67,840 KB
testcase_01 AC 40 ms
64,768 KB
testcase_02 AC 45 ms
67,456 KB
testcase_03 AC 216 ms
68,352 KB
testcase_04 AC 221 ms
68,864 KB
testcase_05 AC 42 ms
64,640 KB
testcase_06 AC 490 ms
71,424 KB
testcase_07 AC 483 ms
70,784 KB
testcase_08 WA -
testcase_09 AC 46 ms
68,864 KB
testcase_10 AC 433 ms
71,296 KB
testcase_11 WA -
testcase_12 AC 267 ms
70,016 KB
testcase_13 AC 191 ms
71,296 KB
testcase_14 AC 148 ms
70,656 KB
testcase_15 WA -
testcase_16 AC 188 ms
70,784 KB
testcase_17 AC 155 ms
71,424 KB
testcase_18 WA -
testcase_19 AC 149 ms
71,040 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 197 ms
71,296 KB
testcase_23 AC 60 ms
68,992 KB
testcase_24 AC 389 ms
71,168 KB
testcase_25 AC 86 ms
69,376 KB
testcase_26 WA -
testcase_27 AC 236 ms
70,400 KB
testcase_28 AC 78 ms
69,248 KB
testcase_29 WA -
testcase_30 AC 189 ms
71,296 KB
testcase_31 AC 355 ms
70,144 KB
testcase_32 AC 440 ms
71,040 KB
testcase_33 AC 281 ms
70,528 KB
testcase_34 AC 143 ms
71,040 KB
testcase_35 AC 215 ms
69,376 KB
testcase_36 AC 155 ms
69,504 KB
testcase_37 AC 391 ms
70,912 KB
testcase_38 AC 186 ms
71,424 KB
testcase_39 AC 296 ms
70,912 KB
testcase_40 AC 117 ms
70,528 KB
testcase_41 AC 104 ms
69,632 KB
testcase_42 AC 88 ms
70,016 KB
testcase_43 AC 149 ms
70,912 KB
testcase_44 AC 176 ms
71,040 KB
testcase_45 AC 121 ms
69,632 KB
testcase_46 AC 313 ms
70,912 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 168 ms
70,912 KB
testcase_50 AC 81 ms
69,888 KB
testcase_51 WA -
testcase_52 AC 107 ms
69,376 KB
testcase_53 AC 161 ms
71,424 KB
testcase_54 AC 198 ms
70,656 KB
testcase_55 AC 198 ms
71,040 KB
testcase_56 AC 199 ms
71,040 KB
testcase_57 AC 523 ms
71,040 KB
testcase_58 WA -
testcase_59 AC 198 ms
70,784 KB
testcase_60 WA -
testcase_61 AC 523 ms
71,040 KB
testcase_62 AC 521 ms
71,168 KB
testcase_63 AC 200 ms
71,168 KB
testcase_64 AC 520 ms
71,168 KB
testcase_65 AC 523 ms
71,680 KB
testcase_66 AC 489 ms
71,296 KB
testcase_67 AC 526 ms
71,168 KB
testcase_68 AC 490 ms
70,912 KB
testcase_69 AC 490 ms
71,424 KB
testcase_70 AC 200 ms
71,168 KB
testcase_71 AC 490 ms
70,784 KB
testcase_72 AC 528 ms
71,424 KB
testcase_73 AC 199 ms
71,296 KB
testcase_74 AC 198 ms
71,552 KB
testcase_75 AC 486 ms
70,784 KB
testcase_76 AC 197 ms
71,168 KB
testcase_77 AC 200 ms
71,168 KB
testcase_78 AC 485 ms
71,552 KB
testcase_79 AC 489 ms
71,040 KB
testcase_80 AC 198 ms
71,168 KB
testcase_81 AC 199 ms
70,784 KB
testcase_82 AC 517 ms
70,656 KB
testcase_83 AC 197 ms
71,680 KB
testcase_84 AC 451 ms
70,784 KB
testcase_85 AC 448 ms
70,912 KB
testcase_86 AC 451 ms
70,784 KB
testcase_87 AC 453 ms
71,040 KB
testcase_88 AC 459 ms
71,296 KB
testcase_89 AC 459 ms
71,168 KB
testcase_90 AC 449 ms
70,912 KB
testcase_91 AC 453 ms
71,168 KB
testcase_92 AC 461 ms
71,168 KB
testcase_93 AC 449 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import *
K,N=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
for i in range(54321):
  M=min(A[i],B[0])
  for j in range(K):
    X=A[i+j]
    if X>B[j]:
      X=B[j]
    if M<X:
      M=X
  A.append(M)
print(A[min(N,50005)])
0