結果

問題 No.2261 Coffee
ユーザー ああいいああいい
提出日時 2023-04-08 18:29:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 94,292 KB
最終ジャッジ日時 2024-10-03 14:51:44
合計ジャッジ時間 20,133 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 48 ms
59,776 KB
testcase_06 AC 51 ms
61,056 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 50 ms
60,928 KB
testcase_09 AC 48 ms
59,776 KB
testcase_10 AC 63 ms
65,280 KB
testcase_11 AC 65 ms
65,920 KB
testcase_12 AC 62 ms
64,768 KB
testcase_13 AC 59 ms
63,488 KB
testcase_14 AC 63 ms
65,152 KB
testcase_15 AC 59 ms
63,616 KB
testcase_16 AC 63 ms
63,744 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 619 ms
91,100 KB
testcase_29 AC 604 ms
90,460 KB
testcase_30 AC 494 ms
87,040 KB
testcase_31 AC 718 ms
92,928 KB
testcase_32 AC 714 ms
93,056 KB
testcase_33 AC 719 ms
92,928 KB
testcase_34 AC 721 ms
93,184 KB
testcase_35 AC 743 ms
93,440 KB
testcase_36 AC 716 ms
93,312 KB
testcase_37 AC 721 ms
93,312 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

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

M = [-10 ** 10] * 32
m = [10 ** 10] * 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