結果

問題 No.505 カードの数式2
ユーザー convexineqconvexineq
提出日時 2021-02-12 05:24:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 236 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-07-18 15:17:29
合計ジャッジ時間 2,868 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 RE -
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 RE -
testcase_08 AC 38 ms
51,584 KB
testcase_09 RE -
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 39 ms
51,840 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 38 ms
51,584 KB
testcase_18 AC 35 ms
51,712 KB
testcase_19 RE -
testcase_20 AC 37 ms
51,712 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 37 ms
52,096 KB
testcase_29 AC 41 ms
51,584 KB
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
p = n = a[0]
for x in a[1:]:
    c = abs(p)//abs(x)*(abs(p*x)//(p*x))
    d = abs(n)//abs(x)*(abs(n*x)//(n*x))
    lst = [p*x,p+x,p-x,n*x,n+x,n-x,c,d]
    p,n = max(lst), min(lst)
print(p)
0