結果

問題 No.973 余興
ユーザー chinchillachinchilla
提出日時 2020-01-29 21:54:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 782 ms / 4,000 ms
コード長 315 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 46,384 KB
最終ジャッジ日時 2024-09-16 02:43:14
合計ジャッジ時間 38,067 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 774 ms
45,992 KB
testcase_01 AC 775 ms
46,104 KB
testcase_02 AC 778 ms
45,872 KB
testcase_03 AC 775 ms
46,248 KB
testcase_04 AC 777 ms
46,248 KB
testcase_05 AC 782 ms
46,384 KB
testcase_06 AC 778 ms
46,256 KB
testcase_07 AC 774 ms
45,864 KB
testcase_08 AC 775 ms
46,380 KB
testcase_09 AC 775 ms
46,124 KB
testcase_10 AC 766 ms
46,124 KB
testcase_11 AC 588 ms
44,964 KB
testcase_12 AC 590 ms
45,104 KB
testcase_13 AC 588 ms
45,228 KB
testcase_14 AC 591 ms
44,588 KB
testcase_15 AC 547 ms
44,464 KB
testcase_16 AC 543 ms
44,592 KB
testcase_17 AC 537 ms
44,068 KB
testcase_18 AC 545 ms
44,080 KB
testcase_19 AC 540 ms
44,588 KB
testcase_20 AC 537 ms
44,324 KB
testcase_21 AC 542 ms
44,464 KB
testcase_22 AC 543 ms
44,536 KB
testcase_23 AC 536 ms
44,180 KB
testcase_24 AC 541 ms
44,336 KB
testcase_25 AC 529 ms
44,328 KB
testcase_26 AC 539 ms
44,072 KB
testcase_27 AC 547 ms
44,328 KB
testcase_28 AC 546 ms
44,332 KB
testcase_29 AC 547 ms
43,952 KB
testcase_30 AC 650 ms
45,724 KB
testcase_31 AC 662 ms
46,124 KB
testcase_32 AC 658 ms
45,864 KB
testcase_33 AC 657 ms
46,128 KB
testcase_34 AC 653 ms
45,616 KB
testcase_35 AC 651 ms
45,864 KB
testcase_36 AC 651 ms
46,244 KB
testcase_37 AC 649 ms
46,252 KB
testcase_38 AC 651 ms
45,860 KB
testcase_39 AC 650 ms
45,992 KB
testcase_40 AC 523 ms
44,584 KB
testcase_41 AC 514 ms
44,204 KB
testcase_42 AC 513 ms
44,012 KB
testcase_43 AC 512 ms
44,068 KB
testcase_44 AC 526 ms
44,200 KB
testcase_45 AC 521 ms
44,324 KB
testcase_46 AC 654 ms
46,252 KB
testcase_47 AC 660 ms
46,240 KB
testcase_48 AC 655 ms
46,248 KB
testcase_49 AC 646 ms
45,996 KB
testcase_50 AC 657 ms
46,128 KB
testcase_51 AC 655 ms
46,124 KB
testcase_52 AC 655 ms
46,116 KB
testcase_53 AC 650 ms
46,256 KB
testcase_54 AC 661 ms
45,736 KB
testcase_55 AC 655 ms
46,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, numpy as np
n, x = map(int, input().split())
a = np.genfromtxt(sys.stdin, dtype=int)
b = np.vstack((np.zeros((2, n), dtype=int), a, a))
while b.shape[1] > 1:
	b, c = b[:,:-1], b[:,1:]
	b[0] += c[2]
	b[1] = c[1] + b[3]
	b[2] = c[2]
	b[:2, np.logical_and(b[0]>x, b[1]>x)] = 0
print("A" if b[0,0] else "B")
0