結果

問題 No.973 余興
ユーザー maspymaspy
提出日時 2020-05-07 16:15:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 633 ms / 4,000 ms
コード長 192 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,696 KB
最終ジャッジ日時 2024-07-03 09:29:43
合計ジャッジ時間 33,842 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 614 ms
44,320 KB
testcase_01 AC 616 ms
44,196 KB
testcase_02 AC 611 ms
44,436 KB
testcase_03 AC 613 ms
44,308 KB
testcase_04 AC 614 ms
44,452 KB
testcase_05 AC 610 ms
44,056 KB
testcase_06 AC 606 ms
44,312 KB
testcase_07 AC 611 ms
44,172 KB
testcase_08 AC 615 ms
44,176 KB
testcase_09 AC 615 ms
44,184 KB
testcase_10 AC 620 ms
44,184 KB
testcase_11 AC 551 ms
44,060 KB
testcase_12 AC 565 ms
44,296 KB
testcase_13 AC 557 ms
44,312 KB
testcase_14 AC 551 ms
44,184 KB
testcase_15 AC 507 ms
44,684 KB
testcase_16 AC 507 ms
44,576 KB
testcase_17 AC 509 ms
44,172 KB
testcase_18 AC 507 ms
44,560 KB
testcase_19 AC 506 ms
44,556 KB
testcase_20 AC 505 ms
44,572 KB
testcase_21 AC 503 ms
44,320 KB
testcase_22 AC 501 ms
44,684 KB
testcase_23 AC 504 ms
44,320 KB
testcase_24 AC 513 ms
44,168 KB
testcase_25 AC 494 ms
44,288 KB
testcase_26 AC 496 ms
44,316 KB
testcase_27 AC 495 ms
44,168 KB
testcase_28 AC 495 ms
44,316 KB
testcase_29 AC 493 ms
44,168 KB
testcase_30 AC 633 ms
44,568 KB
testcase_31 AC 619 ms
44,176 KB
testcase_32 AC 615 ms
44,568 KB
testcase_33 AC 613 ms
44,576 KB
testcase_34 AC 608 ms
44,164 KB
testcase_35 AC 599 ms
44,576 KB
testcase_36 AC 606 ms
44,300 KB
testcase_37 AC 603 ms
44,108 KB
testcase_38 AC 612 ms
44,444 KB
testcase_39 AC 615 ms
44,548 KB
testcase_40 AC 509 ms
44,188 KB
testcase_41 AC 504 ms
44,056 KB
testcase_42 AC 489 ms
43,976 KB
testcase_43 AC 493 ms
44,312 KB
testcase_44 AC 488 ms
44,180 KB
testcase_45 AC 510 ms
44,372 KB
testcase_46 AC 629 ms
44,440 KB
testcase_47 AC 627 ms
44,696 KB
testcase_48 AC 630 ms
44,572 KB
testcase_49 AC 611 ms
44,184 KB
testcase_50 AC 630 ms
44,448 KB
testcase_51 AC 621 ms
44,296 KB
testcase_52 AC 622 ms
44,424 KB
testcase_53 AC 613 ms
44,312 KB
testcase_54 AC 609 ms
44,176 KB
testcase_55 AC 616 ms
44,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from numpy import *
A=int64(open(0).read().split())
N,X=A[:2]
A=A[2:]
l=r=A*0
for n in range(1,N):
  l=l[1:]+A[:-n]
  r=r[:-1]+A[n:]
  i=(l>X)&(r>X)
  l*=~i
  r*=~i
print('A' if l[0] else 'B')
0