結果

問題 No.2261 Coffee
ユーザー ああいいああいい
提出日時 2023-04-08 18:31:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 791 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 94,072 KB
最終ジャッジ日時 2024-10-03 14:53:22
合計ジャッジ時間 20,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 44 ms
59,520 KB
testcase_06 AC 46 ms
60,928 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 46 ms
60,928 KB
testcase_09 AC 44 ms
59,904 KB
testcase_10 AC 57 ms
65,280 KB
testcase_11 AC 57 ms
65,792 KB
testcase_12 AC 55 ms
65,024 KB
testcase_13 AC 54 ms
63,872 KB
testcase_14 AC 55 ms
65,152 KB
testcase_15 AC 52 ms
63,488 KB
testcase_16 AC 52 ms
64,128 KB
testcase_17 AC 107 ms
77,312 KB
testcase_18 AC 107 ms
76,928 KB
testcase_19 AC 104 ms
76,992 KB
testcase_20 AC 101 ms
77,056 KB
testcase_21 AC 107 ms
77,056 KB
testcase_22 AC 102 ms
76,928 KB
testcase_23 AC 111 ms
77,224 KB
testcase_24 AC 701 ms
92,780 KB
testcase_25 AC 600 ms
89,456 KB
testcase_26 AC 791 ms
94,072 KB
testcase_27 AC 708 ms
92,764 KB
testcase_28 AC 597 ms
90,848 KB
testcase_29 AC 587 ms
91,096 KB
testcase_30 AC 476 ms
87,424 KB
testcase_31 AC 705 ms
92,928 KB
testcase_32 AC 706 ms
92,928 KB
testcase_33 AC 698 ms
93,184 KB
testcase_34 AC 703 ms
92,800 KB
testcase_35 AC 719 ms
92,928 KB
testcase_36 AC 692 ms
92,928 KB
testcase_37 AC 696 ms
92,800 KB
testcase_38 AC 745 ms
93,708 KB
testcase_39 AC 787 ms
93,656 KB
testcase_40 AC 751 ms
93,528 KB
testcase_41 AC 751 ms
93,640 KB
testcase_42 AC 751 ms
93,676 KB
testcase_43 AC 743 ms
93,816 KB
testcase_44 AC 739 ms
93,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

l = []
for _ in range(N):
    s = list(map(int,input().split()))
    l.append(s)

M = [-10 ** 16] * 32
m = [10 ** 16] * 32

for s in l:
    for bit in range(32):
        tmp = 0
        for i in range(5):
            if bit >> i & 1:
                tmp += s[i]
            else:
                tmp -= s[i]
        if tmp > M[bit]:M[bit] = tmp
        if tmp < m[bit]:m[bit] = tmp

for s in l:
    ans = 0
    for bit in range(32):
        tmp = 0
        for i in range(5):
            if bit >> i & 1:
                tmp += s[i]
            else:
                tmp -= s[i]
        t = abs(M[bit] - tmp)
        if t > ans:ans = t
        t = abs(m[bit] - tmp)
        if t > ans:
            ans = t
    print(ans)
0