結果

問題 No.2071 Shift and OR
ユーザー H20H20
提出日時 2022-09-16 21:39:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 106,048 KB
最終ジャッジ日時 2024-12-21 18:43:31
合計ジャッジ時間 3,281 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,528 KB
testcase_01 AC 34 ms
51,976 KB
testcase_02 AC 34 ms
53,352 KB
testcase_03 AC 33 ms
52,848 KB
testcase_04 AC 35 ms
52,136 KB
testcase_05 AC 33 ms
53,808 KB
testcase_06 AC 33 ms
52,308 KB
testcase_07 WA -
testcase_08 AC 34 ms
52,092 KB
testcase_09 AC 33 ms
52,600 KB
testcase_10 AC 33 ms
52,456 KB
testcase_11 AC 33 ms
52,260 KB
testcase_12 AC 31 ms
52,668 KB
testcase_13 AC 32 ms
52,388 KB
testcase_14 AC 33 ms
52,688 KB
testcase_15 AC 33 ms
52,644 KB
testcase_16 AC 34 ms
51,960 KB
testcase_17 AC 33 ms
51,980 KB
testcase_18 WA -
testcase_19 AC 34 ms
52,292 KB
testcase_20 AC 33 ms
52,832 KB
testcase_21 AC 33 ms
52,408 KB
testcase_22 AC 34 ms
53,280 KB
testcase_23 AC 133 ms
102,268 KB
testcase_24 AC 51 ms
73,408 KB
testcase_25 AC 87 ms
87,296 KB
testcase_26 AC 94 ms
89,288 KB
testcase_27 AC 41 ms
60,684 KB
testcase_28 AC 142 ms
106,048 KB
testcase_29 AC 141 ms
105,924 KB
testcase_30 AC 35 ms
53,512 KB
testcase_31 AC 34 ms
53,500 KB
testcase_32 AC 35 ms
52,064 KB
testcase_33 AC 33 ms
52,696 KB
testcase_34 AC 34 ms
52,900 KB
testcase_35 AC 33 ms
52,208 KB
testcase_36 AC 33 ms
52,268 KB
testcase_37 AC 33 ms
52,804 KB
testcase_38 AC 32 ms
52,668 KB
testcase_39 AC 34 ms
52,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
cnt = 0
for a in A:
    cnt += format(a, 'b').count('1')
ans = 0
for i in range(15,15-min(16,cnt),-1):
    ans+=2**i
print(ans)
0