結果
問題 | No.973 余興 |
ユーザー | convexineq |
提出日時 | 2020-01-17 23:27:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,112 bytes |
コンパイル時間 | 520 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 272,552 KB |
最終ジャッジ日時 | 2024-06-26 01:08:33 |
合計ジャッジ時間 | 22,163 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 867 ms
272,448 KB |
testcase_04 | WA | - |
testcase_05 | AC | 761 ms
272,336 KB |
testcase_06 | AC | 766 ms
272,416 KB |
testcase_07 | AC | 759 ms
272,220 KB |
testcase_08 | AC | 767 ms
271,572 KB |
testcase_09 | AC | 759 ms
272,276 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 176 ms
146,100 KB |
testcase_14 | WA | - |
testcase_15 | AC | 108 ms
83,816 KB |
testcase_16 | AC | 106 ms
83,872 KB |
testcase_17 | WA | - |
testcase_18 | AC | 97 ms
82,228 KB |
testcase_19 | AC | 96 ms
82,300 KB |
testcase_20 | AC | 90 ms
80,592 KB |
testcase_21 | AC | 101 ms
83,800 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 101 ms
82,088 KB |
testcase_29 | WA | - |
testcase_30 | AC | 342 ms
272,136 KB |
testcase_31 | AC | 336 ms
272,280 KB |
testcase_32 | AC | 336 ms
272,188 KB |
testcase_33 | AC | 335 ms
271,964 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 328 ms
266,580 KB |
testcase_37 | AC | 332 ms
267,228 KB |
testcase_38 | WA | - |
testcase_39 | AC | 331 ms
271,552 KB |
testcase_40 | AC | 45 ms
52,332 KB |
testcase_41 | AC | 45 ms
52,500 KB |
testcase_42 | AC | 46 ms
53,280 KB |
testcase_43 | AC | 48 ms
53,732 KB |
testcase_44 | WA | - |
testcase_45 | AC | 59 ms
62,460 KB |
testcase_46 | WA | - |
testcase_47 | AC | 346 ms
272,312 KB |
testcase_48 | WA | - |
testcase_49 | AC | 334 ms
256,384 KB |
testcase_50 | WA | - |
testcase_51 | AC | 358 ms
272,404 KB |
testcase_52 | AC | 363 ms
271,832 KB |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
ソースコード
# coding: utf-8 # Your code here! import sys sys.setrecursionlimit(10**6) readline = sys.stdin.readline read = sys.stdin.read #n,m,*d= [int(i) for i in read().split()] #a,t,k = [int(i) for i in readline().split()] n,x,*a = [int(i) for i in read().split()] r = [0]*n l = [0]*n r[-1] = n pt = 0 res = -a[0] for i in range(n-1): while pt < n and res+a[pt] <= n: res += a[pt] pt += 1 r[i] = pt res -= a[i] pt = n-1 res = -a[n-1] for i in range(n-1,0,-1): while pt >= 0 and res+a[pt] <= n: res += a[pt] pt -= 1 l[i] = pt+1 res -= a[i-1] dp = [[0]*n for _ in range(n)] #for i in dp: print(*i) for j in range(1,n): for k in range(l[j],j): dp[k][j] = 1 #for i in dp: print(*i) #print(l,r) for i in range(n-2,-1,-1): j = i while j < n: if dp[i][j] == 0: dp[i][j] = -1 for k in range(l[i],i): dp[k][j] = 1 dp[i][j+1:r[j]] = [1]*(r[j]-(j+1)) j = r[j] else: j += 1 #print(dp) a = dp[0][-1] if a == 1: print("A") else: print("B")