結果
問題 | No.973 余興 |
ユーザー | neterukun |
提出日時 | 2020-01-19 16:16:09 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 825 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 82,520 KB |
実行使用メモリ | 277,692 KB |
最終ジャッジ日時 | 2024-07-02 21:51:47 |
合計ジャッジ時間 | 46,774 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 2,542 ms
104,192 KB |
testcase_16 | AC | 1,169 ms
89,344 KB |
testcase_17 | AC | 637 ms
83,712 KB |
testcase_18 | AC | 866 ms
87,040 KB |
testcase_19 | AC | 2,006 ms
90,396 KB |
testcase_20 | AC | 619 ms
84,048 KB |
testcase_21 | AC | 1,140 ms
88,832 KB |
testcase_22 | AC | 1,141 ms
89,088 KB |
testcase_23 | AC | 876 ms
85,868 KB |
testcase_24 | AC | 725 ms
85,760 KB |
testcase_25 | AC | 732 ms
82,560 KB |
testcase_26 | AC | 612 ms
83,840 KB |
testcase_27 | AC | 3,690 ms
112,896 KB |
testcase_28 | AC | 1,970 ms
96,640 KB |
testcase_29 | AC | 851 ms
85,760 KB |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | AC | 38 ms
51,840 KB |
testcase_41 | AC | 39 ms
51,712 KB |
testcase_42 | AC | 38 ms
52,608 KB |
testcase_43 | AC | 40 ms
52,132 KB |
testcase_44 | AC | 38 ms
51,456 KB |
testcase_45 | AC | 85 ms
76,188 KB |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
ソースコード
n, x = map(int, input().split()) a = list(map(int, input().split())) ruiseki = [0] * (n + 1) for i in range(n): ruiseki[i + 1] = ruiseki[i] + a[i] def solve(l, r): # [l, r)のシュークリームが残っているときの先手の勝ち負け if r - l == 0: dp[l][r] = True return True if r - l == 1: dp[l][r] = False return False if dp[l][r] is not None: return dp[l][r] tmp = False for newl in range(l + 1, r + 1): if ruiseki[newl] - ruiseki[l] <= x: tmp |= not solve(newl, r) for newr in range(l, r): if ruiseki[r] - ruiseki[newr] <= x: tmp |= not solve(l, newr) dp[l][r] = tmp return tmp dp = [[None] * (n + 1) for i in range(n + 1)] if solve(0, n): print("A") else: print("B")