結果

問題 No.505 カードの数式2
ユーザー ntudantuda
提出日時 2024-12-17 22:22:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 401 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 717,272 KB
最終ジャッジ日時 2024-12-17 22:22:18
合計ジャッジ時間 7,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,392 KB
testcase_01 AC 41 ms
53,348 KB
testcase_02 AC 52 ms
68,680 KB
testcase_03 AC 36 ms
53,676 KB
testcase_04 AC 38 ms
52,568 KB
testcase_05 AC 36 ms
52,888 KB
testcase_06 AC 38 ms
52,084 KB
testcase_07 AC 38 ms
52,988 KB
testcase_08 AC 39 ms
52,368 KB
testcase_09 AC 38 ms
52,220 KB
testcase_10 AC 38 ms
53,304 KB
testcase_11 AC 37 ms
52,412 KB
testcase_12 AC 37 ms
53,144 KB
testcase_13 AC 37 ms
52,884 KB
testcase_14 AC 37 ms
52,972 KB
testcase_15 AC 35 ms
52,532 KB
testcase_16 AC 37 ms
53,120 KB
testcase_17 AC 37 ms
52,488 KB
testcase_18 AC 39 ms
52,232 KB
testcase_19 AC 38 ms
53,824 KB
testcase_20 AC 38 ms
54,020 KB
testcase_21 AC 39 ms
52,768 KB
testcase_22 AC 339 ms
215,132 KB
testcase_23 AC 89 ms
104,472 KB
testcase_24 AC 37 ms
54,364 KB
testcase_25 AC 37 ms
52,688 KB
testcase_26 AC 432 ms
254,936 KB
testcase_27 AC 477 ms
253,748 KB
testcase_28 TLE -
testcase_29 AC 69 ms
53,216 KB
testcase_30 AC 39 ms
53,448 KB
testcase_31 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
N = int(input())
A = list(map(int, input().split()))
Q = {A[0]}
for a in A[1:]:
    Q2 = set()
    while Q:
        x = next(iter(Q))
        Q.remove(x)
        Q2.add(x + a)
        Q2.add(x - a)
        Q2.add(x * a)
        if a != 0:
            if x * a > 0:
                Q2.add(x // a)
            else:
                Q2.add(-((-x)//a))
    Q = Q2
print(max(list(Q)))
0