結果
問題 | No.1900 Don't be Powers of 2 |
ユーザー | Shirotsume |
提出日時 | 2022-03-22 15:42:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,191 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,296 KB |
実行使用メモリ | 78,892 KB |
最終ジャッジ日時 | 2024-10-10 07:44:40 |
合計ジャッジ時間 | 74,773 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,947 ms
77,048 KB |
testcase_01 | AC | 1,945 ms
77,184 KB |
testcase_02 | AC | 1,946 ms
77,808 KB |
testcase_03 | AC | 1,948 ms
77,428 KB |
testcase_04 | AC | 1,959 ms
77,564 KB |
testcase_05 | AC | 1,954 ms
77,600 KB |
testcase_06 | AC | 1,962 ms
77,828 KB |
testcase_07 | AC | 1,946 ms
77,340 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1,946 ms
77,440 KB |
testcase_14 | AC | 1,951 ms
77,840 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 1,946 ms
77,312 KB |
testcase_18 | AC | 1,945 ms
77,836 KB |
testcase_19 | AC | 1,950 ms
77,768 KB |
testcase_20 | AC | 1,947 ms
77,844 KB |
testcase_21 | AC | 1,946 ms
77,580 KB |
testcase_22 | AC | 1,946 ms
78,892 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | AC | 1,942 ms
77,056 KB |
ソースコード
import time import random #https://qiita.com/zawawahoge/items/8bbd4c2319e7f7746266 def Popcount(x): '''xの立っているビット数をカウントする関数 (xは64bit整数)''' # 2bitごとの組に分け、立っているビット数を2bitで表現する x = x - ((x >> 1) & 0x5555555555555555) # 4bit整数に 上位2bit + 下位2bit を計算した値を入れる x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333) x = (x + (x >> 4)) & 0x0f0f0f0f0f0f0f0f # 8bitごと x = x + (x >> 8) # 16bitごと x = x + (x >> 16) # 32bitごと x = x + (x >> 32) # 64bitごと = 全部の合計 return x & 0x0000007f t1 = time.time() n = int(input()) a = list(map(int,input().split())) b = [] ans = 1 while time.time() - t1 < 1.9: if len(b) == 0 or (random.random() < 0.8 and time.time() - t1 < 1.5): now = random.choice(a) flag = True for v in b: if Popcount(v ^ now) == 1: flag = False if flag: a.remove(now) b.append(now) else: now = random.choice(b) b.remove(now) a.append(now) ans = max(ans, len(b)) print(ans)