結果
問題 | No.911 ラッキーソート |
ユーザー | mkawa2 |
提出日時 | 2019-11-02 21:15:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,321 bytes |
コンパイル時間 | 86 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 149,180 KB |
最終ジャッジ日時 | 2024-09-14 23:16:55 |
合計ジャッジ時間 | 5,381 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,692 KB |
testcase_01 | AC | 34 ms
10,752 KB |
testcase_02 | AC | 33 ms
10,624 KB |
testcase_03 | WA | - |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | WA | - |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 31 ms
10,880 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 31 ms
11,008 KB |
testcase_11 | WA | - |
testcase_12 | AC | 31 ms
10,624 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10 ** 6) input = sys.stdin.readline int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def main(): def bitdp(lr): if not lr: return 0 dp = [[0] * 2 for _ in range(max_k + 1)] dp[0][0] = 1 for i in range(max_k): for f in range(2): pre = dp[i][f] if pre == 0: continue nf = f if dig[i] < 1 and (f == 1 or lr[i] == 1): dp[i + 1][nf] += pre if dig[i] > -1: if lr[i] == 1: nf = 1 dp[i + 1][nf] += pre return sum(dp[max_k]) max_k = 60 blst = lambda x: list(map(int, list(format(int(x), "b").zfill(max_k)))) n, l, r = map(int, input().split()) l = [] if l == 0 else blst(l - 1) r = blst(r) aa = list(map(blst, input().split())) # p2D(aa) dig = [0] * max_k # 1昇順 -1降順 0どちらでも for a0, a1 in zip(aa, aa[1:]): for i, (a0k, a1k) in enumerate(zip(a0, a1)): if a0k != a1k: if dig[i] == a0k - a1k: print(0) exit() else: dig[i] = a1k - a0k break # print(dig) print(bitdp(r) - bitdp(l)) main()