結果

問題 No.505 カードの数式2
ユーザー ntudantuda
提出日時 2024-12-17 22:01:25
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 274 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 480,008 KB
最終ジャッジ日時 2024-12-17 22:01:34
合計ジャッジ時間 7,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,320 KB
testcase_01 AC 39 ms
52,592 KB
testcase_02 AC 51 ms
67,992 KB
testcase_03 AC 37 ms
53,160 KB
testcase_04 RE -
testcase_05 AC 36 ms
52,416 KB
testcase_06 AC 35 ms
52,952 KB
testcase_07 RE -
testcase_08 AC 39 ms
52,504 KB
testcase_09 RE -
testcase_10 AC 37 ms
52,196 KB
testcase_11 AC 38 ms
52,340 KB
testcase_12 AC 36 ms
53,120 KB
testcase_13 RE -
testcase_14 AC 35 ms
53,136 KB
testcase_15 AC 36 ms
53,016 KB
testcase_16 RE -
testcase_17 WA -
testcase_18 AC 37 ms
52,336 KB
testcase_19 RE -
testcase_20 AC 36 ms
52,488 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 437 ms
253,328 KB
testcase_27 AC 421 ms
246,268 KB
testcase_28 TLE -
testcase_29 WA -
testcase_30 AC 40 ms
52,756 KB
testcase_31 AC 396 ms
254,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
        Q2.add(x // a)
    Q = Q2
print(max(list(Q)))
0