結果

問題 No.2061 XOR Sort
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-12 08:36:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 114 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 81,692 KB
実行使用メモリ 101,528 KB
最終ジャッジ日時 2023-10-23 19:27:28
合計ジャッジ時間 4,321 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,500 KB
testcase_01 AC 39 ms
53,500 KB
testcase_02 AC 39 ms
53,500 KB
testcase_03 AC 38 ms
53,500 KB
testcase_04 AC 40 ms
53,500 KB
testcase_05 AC 38 ms
53,500 KB
testcase_06 AC 38 ms
53,500 KB
testcase_07 AC 38 ms
53,500 KB
testcase_08 AC 38 ms
53,500 KB
testcase_09 AC 39 ms
53,500 KB
testcase_10 AC 38 ms
53,500 KB
testcase_11 AC 38 ms
53,500 KB
testcase_12 AC 38 ms
53,500 KB
testcase_13 WA -
testcase_14 AC 69 ms
82,780 KB
testcase_15 AC 67 ms
82,696 KB
testcase_16 AC 106 ms
101,120 KB
testcase_17 AC 75 ms
89,472 KB
testcase_18 AC 75 ms
89,560 KB
testcase_19 AC 76 ms
89,472 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 68 ms
82,772 KB
testcase_23 WA -
testcase_24 AC 108 ms
101,528 KB
testcase_25 AC 109 ms
101,528 KB
testcase_26 AC 109 ms
101,528 KB
testcase_27 AC 109 ms
101,528 KB
testcase_28 AC 108 ms
101,528 KB
testcase_29 AC 57 ms
72,644 KB
testcase_30 AC 38 ms
53,500 KB
testcase_31 AC 42 ms
59,744 KB
testcase_32 AC 39 ms
53,500 KB
testcase_33 AC 38 ms
53,500 KB
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 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#fake
n=int(input())
a=list(map(int,input().split()))
k=0
while 2**(k+1)<=max(a):k+=1
print(2**(k+1)%998244353)

0