結果

問題 No.505 カードの数式2
ユーザー ntudantuda
提出日時 2024-12-17 22:11:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 490 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-12-17 22:11:58
合計ジャッジ時間 2,831 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,752 KB
testcase_01 AC 37 ms
53,108 KB
testcase_02 AC 37 ms
52,760 KB
testcase_03 AC 35 ms
52,808 KB
testcase_04 AC 38 ms
52,484 KB
testcase_05 AC 39 ms
53,840 KB
testcase_06 AC 36 ms
53,724 KB
testcase_07 AC 38 ms
53,376 KB
testcase_08 AC 38 ms
52,748 KB
testcase_09 AC 39 ms
52,928 KB
testcase_10 AC 39 ms
52,584 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,532 KB
testcase_13 AC 37 ms
53,812 KB
testcase_14 WA -
testcase_15 AC 38 ms
52,796 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 66 ms
53,960 KB
testcase_20 AC 39 ms
53,932 KB
testcase_21 AC 37 ms
52,336 KB
testcase_22 AC 39 ms
54,408 KB
testcase_23 AC 37 ms
53,432 KB
testcase_24 AC 37 ms
52,812 KB
testcase_25 AC 38 ms
52,760 KB
testcase_26 AC 39 ms
53,148 KB
testcase_27 AC 39 ms
53,068 KB
testcase_28 AC 39 ms
53,332 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
            Q2.add(x // a)
    Q2 = sorted(list(Q2))

    Q = set()
    Q.add(Q2[0])
    Q.add(Q2[-1])
    if Q2[-1] > 0:
        Q.add(bisect_left(Q2,0))
    if Q2[0] < 0:
        Q.add(bisect_left(Q2,0) - 1)
print(max(list(Q)))
0