結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,568 KB
testcase_01 AC 39 ms
52,004 KB
testcase_02 AC 39 ms
53,408 KB
testcase_03 AC 39 ms
53,836 KB
testcase_04 AC 39 ms
52,360 KB
testcase_05 AC 38 ms
52,652 KB
testcase_06 AC 41 ms
52,364 KB
testcase_07 WA -
testcase_08 AC 39 ms
52,156 KB
testcase_09 AC 39 ms
52,616 KB
testcase_10 AC 38 ms
52,860 KB
testcase_11 AC 39 ms
52,860 KB
testcase_12 AC 39 ms
53,452 KB
testcase_13 AC 39 ms
52,872 KB
testcase_14 AC 39 ms
51,760 KB
testcase_15 AC 38 ms
53,304 KB
testcase_16 AC 38 ms
53,084 KB
testcase_17 AC 39 ms
53,076 KB
testcase_18 WA -
testcase_19 AC 38 ms
53,560 KB
testcase_20 AC 39 ms
52,720 KB
testcase_21 AC 38 ms
52,652 KB
testcase_22 AC 39 ms
53,500 KB
testcase_23 AC 150 ms
102,768 KB
testcase_24 AC 55 ms
74,092 KB
testcase_25 AC 96 ms
87,512 KB
testcase_26 AC 103 ms
89,312 KB
testcase_27 AC 45 ms
61,112 KB
testcase_28 AC 156 ms
105,952 KB
testcase_29 AC 157 ms
105,996 KB
testcase_30 AC 38 ms
52,340 KB
testcase_31 AC 38 ms
52,728 KB
testcase_32 AC 39 ms
52,996 KB
testcase_33 AC 39 ms
52,356 KB
testcase_34 AC 40 ms
53,012 KB
testcase_35 AC 39 ms
52,488 KB
testcase_36 AC 40 ms
52,704 KB
testcase_37 AC 40 ms
52,932 KB
testcase_38 AC 39 ms
52,932 KB
testcase_39 AC 40 ms
53,836 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