結果
問題 | No.1900 Don't be Powers of 2 |
ユーザー | Shirotsume |
提出日時 | 2022-03-22 15:46:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,222 bytes |
コンパイル時間 | 271 ms |
コンパイル使用メモリ | 82,228 KB |
実行使用メモリ | 78,460 KB |
最終ジャッジ日時 | 2024-10-10 07:48:09 |
合計ジャッジ時間 | 73,879 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,941 ms
78,196 KB |
testcase_01 | AC | 1,941 ms
76,952 KB |
testcase_02 | AC | 1,941 ms
77,640 KB |
testcase_03 | AC | 1,940 ms
77,916 KB |
testcase_04 | AC | 1,941 ms
77,636 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1,941 ms
77,992 KB |
testcase_07 | AC | 1,941 ms
77,432 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1,940 ms
77,688 KB |
testcase_14 | AC | 1,941 ms
77,492 KB |
testcase_15 | AC | 50 ms
63,468 KB |
testcase_16 | AC | 49 ms
63,152 KB |
testcase_17 | AC | 1,940 ms
77,812 KB |
testcase_18 | AC | 1,941 ms
77,544 KB |
testcase_19 | AC | 1,941 ms
78,044 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1,941 ms
77,420 KB |
testcase_23 | AC | 58 ms
65,796 KB |
testcase_24 | AC | 66 ms
66,216 KB |
testcase_25 | AC | 67 ms
67,032 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 41 ms
54,556 KB |
testcase_32 | AC | 40 ms
54,228 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 1,942 ms
77,772 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 40 ms
54,756 KB |
testcase_43 | AC | 40 ms
55,240 KB |
testcase_44 | AC | 1,940 ms
77,036 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.95 and time.time() - t1 < 1.5): if len(a) == 0: break 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)