結果

問題 No.2171 OR Assignment
ユーザー 👑 p-adicp-adic
提出日時 2023-06-23 08:47:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 703 ms / 3,500 ms
コード長 202 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-06-30 14:03:46
合計ジャッジ時間 11,407 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 38 ms
51,584 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 211 ms
102,208 KB
testcase_13 AC 206 ms
102,088 KB
testcase_14 AC 204 ms
102,336 KB
testcase_15 AC 113 ms
107,008 KB
testcase_16 AC 128 ms
107,008 KB
testcase_17 AC 138 ms
102,224 KB
testcase_18 AC 425 ms
110,080 KB
testcase_19 AC 409 ms
106,880 KB
testcase_20 AC 629 ms
107,184 KB
testcase_21 AC 616 ms
106,880 KB
testcase_22 AC 659 ms
106,880 KB
testcase_23 AC 509 ms
109,184 KB
testcase_24 AC 678 ms
109,312 KB
testcase_25 AC 703 ms
108,416 KB
testcase_26 AC 670 ms
108,020 KB
testcase_27 AC 606 ms
108,192 KB
testcase_28 AC 581 ms
107,904 KB
testcase_29 AC 568 ms
109,156 KB
testcase_30 AC 516 ms
109,824 KB
testcase_31 AC 679 ms
109,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
L=I()
L=1<<30
B=[[0,1]]
for a in list(map(int,I().split()))+[0]:
	s,c,C=0,L,[]
	for b in B:s,c,C=(s+b[1])%998244353,a|b[0],C+[[],[[c,s]]][c>a|b[0]]
	B=C+[[c,s]]+[[],[[a,s]]][c>a]
print(B[-1][1])
0