結果

問題 No.2061 XOR Sort
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-12 08:36:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 114 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 102,228 KB
最終ジャッジ日時 2024-09-22 13:11:10
合計ジャッジ時間 4,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,180 KB
testcase_01 AC 37 ms
53,116 KB
testcase_02 AC 36 ms
52,772 KB
testcase_03 AC 40 ms
52,604 KB
testcase_04 AC 36 ms
52,688 KB
testcase_05 AC 37 ms
53,352 KB
testcase_06 AC 37 ms
53,776 KB
testcase_07 AC 38 ms
52,344 KB
testcase_08 AC 37 ms
52,452 KB
testcase_09 AC 37 ms
52,436 KB
testcase_10 AC 36 ms
52,564 KB
testcase_11 AC 37 ms
52,352 KB
testcase_12 AC 37 ms
53,232 KB
testcase_13 WA -
testcase_14 AC 65 ms
83,160 KB
testcase_15 AC 65 ms
82,952 KB
testcase_16 AC 100 ms
101,636 KB
testcase_17 AC 73 ms
89,628 KB
testcase_18 AC 72 ms
89,036 KB
testcase_19 AC 73 ms
90,856 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 65 ms
82,528 KB
testcase_23 WA -
testcase_24 AC 101 ms
101,792 KB
testcase_25 AC 100 ms
101,800 KB
testcase_26 AC 102 ms
101,996 KB
testcase_27 AC 101 ms
102,228 KB
testcase_28 AC 102 ms
101,920 KB
testcase_29 AC 54 ms
73,068 KB
testcase_30 AC 37 ms
52,108 KB
testcase_31 AC 42 ms
60,728 KB
testcase_32 AC 37 ms
51,924 KB
testcase_33 AC 37 ms
52,508 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