結果

問題 No.505 カードの数式2
ユーザー titiatitia
提出日時 2023-07-17 02:39:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 388,708 KB
最終ジャッジ日時 2024-09-17 21:19:26
合計ジャッジ時間 5,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 40 ms
14,464 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 26 ms
10,496 KB
testcase_13 AC 26 ms
10,496 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 25 ms
10,496 KB
testcase_16 AC 26 ms
10,496 KB
testcase_17 WA -
testcase_18 AC 26 ms
10,496 KB
testcase_19 AC 26 ms
10,624 KB
testcase_20 AC 26 ms
10,496 KB
testcase_21 AC 26 ms
10,624 KB
testcase_22 AC 286 ms
65,892 KB
testcase_23 AC 77 ms
22,916 KB
testcase_24 AC 25 ms
10,624 KB
testcase_25 AC 25 ms
10,496 KB
testcase_26 AC 494 ms
104,716 KB
testcase_27 AC 475 ms
104,796 KB
testcase_28 TLE -
testcase_29 WA -
testcase_30 AC 27 ms
10,624 KB
testcase_31 AC 456 ms
104,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

NOW={A[0]}

for i in range(1,N):
    NNOW=set()
    a=A[i]

    for n in NOW:
        NNOW.add(n+a)
        NNOW.add(n-a)
        NNOW.add(n*a)

    NOW=NNOW

print(max(NOW))
0