結果

問題 No.2061 XOR Sort
ユーザー ytftytft
提出日時 2022-09-02 13:34:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 299 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 81,676 KB
実行使用メモリ 259,076 KB
最終ジャッジ日時 2024-04-27 15:32:27
合計ジャッジ時間 6,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,828 KB
testcase_01 AC 37 ms
52,460 KB
testcase_02 AC 37 ms
53,132 KB
testcase_03 AC 36 ms
53,380 KB
testcase_04 AC 38 ms
52,436 KB
testcase_05 AC 36 ms
53,496 KB
testcase_06 AC 36 ms
53,192 KB
testcase_07 AC 37 ms
53,304 KB
testcase_08 AC 36 ms
52,616 KB
testcase_09 AC 37 ms
52,492 KB
testcase_10 AC 36 ms
53,148 KB
testcase_11 AC 40 ms
53,144 KB
testcase_12 AC 37 ms
52,436 KB
testcase_13 AC 38 ms
52,080 KB
testcase_14 AC 196 ms
205,572 KB
testcase_15 AC 195 ms
205,352 KB
testcase_16 AC 296 ms
257,916 KB
testcase_17 AC 243 ms
253,404 KB
testcase_18 AC 236 ms
246,528 KB
testcase_19 AC 237 ms
246,404 KB
testcase_20 AC 65 ms
82,304 KB
testcase_21 AC 126 ms
137,644 KB
testcase_22 AC 197 ms
205,680 KB
testcase_23 AC 50 ms
66,392 KB
testcase_24 AC 290 ms
259,076 KB
testcase_25 AC 287 ms
258,464 KB
testcase_26 AC 293 ms
258,048 KB
testcase_27 AC 290 ms
258,548 KB
testcase_28 AC 299 ms
258,124 KB
testcase_29 AC 107 ms
115,984 KB
testcase_30 AC 36 ms
52,964 KB
testcase_31 AC 45 ms
69,528 KB
testcase_32 AC 34 ms
52,128 KB
testcase_33 AC 34 ms
52,072 KB
testcase_34 AC 35 ms
52,644 KB
testcase_35 AC 35 ms
52,492 KB
testcase_36 AC 35 ms
52,188 KB
testcase_37 AC 37 ms
53,188 KB
testcase_38 AC 35 ms
52,756 KB
testcase_39 AC 34 ms
52,992 KB
testcase_40 AC 34 ms
52,788 KB
testcase_41 AC 37 ms
53,196 KB
testcase_42 AC 38 ms
53,104 KB
testcase_43 AC 39 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
A=sorted(list(map(int,input().split())))
mod,ans=998244353,1
while A[N-1]>0:
	for i in range(N-1):
		if A[i]%2==0 and A[i]+1==A[i+1]:
			ans=(ans*2)%mod
			break
	A=list(map(lambda x:x//2,A))
print(ans)
0