結果
問題 | No.911 ラッキーソート |
ユーザー | vwxyz |
提出日時 | 2023-02-02 05:43:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,414 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 123,840 KB |
最終ジャッジ日時 | 2024-07-01 21:34:20 |
合計ジャッジ時間 | 12,908 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 158 ms
89,472 KB |
testcase_01 | AC | 161 ms
89,600 KB |
testcase_02 | AC | 158 ms
89,600 KB |
testcase_03 | AC | 161 ms
89,216 KB |
testcase_04 | AC | 159 ms
89,216 KB |
testcase_05 | AC | 160 ms
89,600 KB |
testcase_06 | AC | 161 ms
89,216 KB |
testcase_07 | AC | 158 ms
89,600 KB |
testcase_08 | AC | 158 ms
89,600 KB |
testcase_09 | AC | 158 ms
89,216 KB |
testcase_10 | AC | 157 ms
89,600 KB |
testcase_11 | AC | 160 ms
89,600 KB |
testcase_12 | AC | 160 ms
89,600 KB |
testcase_13 | AC | 307 ms
119,348 KB |
testcase_14 | AC | 260 ms
120,188 KB |
testcase_15 | AC | 258 ms
119,564 KB |
testcase_16 | AC | 282 ms
123,840 KB |
testcase_17 | AC | 280 ms
123,584 KB |
testcase_18 | AC | 281 ms
123,624 KB |
testcase_19 | AC | 267 ms
120,168 KB |
testcase_20 | AC | 263 ms
119,728 KB |
testcase_21 | AC | 282 ms
122,176 KB |
testcase_22 | AC | 285 ms
119,180 KB |
testcase_23 | AC | 263 ms
115,524 KB |
testcase_24 | AC | 261 ms
113,920 KB |
testcase_25 | AC | 218 ms
107,904 KB |
testcase_26 | AC | 209 ms
102,144 KB |
testcase_27 | AC | 181 ms
94,464 KB |
testcase_28 | WA | - |
testcase_29 | AC | 165 ms
90,624 KB |
testcase_30 | AC | 163 ms
90,368 KB |
testcase_31 | AC | 160 ms
89,984 KB |
testcase_32 | WA | - |
testcase_33 | AC | 161 ms
90,368 KB |
testcase_34 | WA | - |
testcase_35 | AC | 158 ms
89,984 KB |
testcase_36 | AC | 157 ms
89,344 KB |
testcase_37 | AC | 156 ms
89,984 KB |
testcase_38 | AC | 275 ms
123,440 KB |
testcase_39 | AC | 282 ms
118,428 KB |
testcase_40 | AC | 161 ms
90,368 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 265 ms
120,396 KB |
testcase_44 | AC | 309 ms
119,724 KB |
testcase_45 | AC | 271 ms
123,716 KB |
testcase_46 | AC | 270 ms
123,688 KB |
testcase_47 | AC | 254 ms
119,240 KB |
testcase_48 | AC | 272 ms
119,488 KB |
ソースコード
import bisect import copy import decimal import fractions import heapq import itertools import math import random import sys import time from collections import Counter,deque,defaultdict from functools import lru_cache,reduce from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max def _heappush_max(heap,item): heap.append(item) heapq._siftdown_max(heap, 0, len(heap)-1) def _heappushpop_max(heap, item): if heap and item < heap[0]: item, heap[0] = heap[0], item heapq._siftup_max(heap, 0) return item from math import gcd as GCD read=sys.stdin.read readline=sys.stdin.readline readlines=sys.stdin.readlines write=sys.stdout.write N,L,R=map(int,readline().split()) A=list(map(int,readline().split())) X=[[1,1] for bit in range(61)] for i in range(N-1): for bit in range(60,-1,-1): if A[i]&1<<bit!=A[i+1]&1<<bit: if A[i]&1<<bit: X[bit][0]=0 else: X[bit][1]=0 break for bit in range(61): if not sum(X[bit]): ans=0 break else: def solve(N): bl=X[60][N>>60&1] dp=0 if N&1<<60 and 0 in X[60]: dp+=1 for bit in range(59,-1,-1): dp*=sum(X[bit]) if bl and X[bit][0] and N&1<<bit: dp+=1 bl&=X[bit][N>>bit&1] return dp ans=solve(R+1)-solve(L) print(ans)