結果

問題 No.2261 Coffee
ユーザー lloyzlloyz
提出日時 2023-04-14 20:27:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 841 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 815 ms
コンパイル使用メモリ 82,684 KB
実行使用メモリ 90,880 KB
最終ジャッジ日時 2024-10-10 11:20:36
合計ジャッジ時間 23,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 50 ms
59,904 KB
testcase_06 AC 52 ms
61,056 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 50 ms
61,440 KB
testcase_09 AC 48 ms
59,904 KB
testcase_10 AC 63 ms
65,536 KB
testcase_11 AC 65 ms
66,304 KB
testcase_12 AC 60 ms
65,152 KB
testcase_13 AC 58 ms
64,512 KB
testcase_14 AC 60 ms
65,408 KB
testcase_15 AC 58 ms
64,256 KB
testcase_16 AC 58 ms
64,640 KB
testcase_17 AC 122 ms
76,928 KB
testcase_18 AC 119 ms
77,184 KB
testcase_19 AC 121 ms
77,056 KB
testcase_20 AC 114 ms
77,184 KB
testcase_21 AC 121 ms
77,056 KB
testcase_22 AC 113 ms
77,184 KB
testcase_23 AC 120 ms
77,184 KB
testcase_24 AC 715 ms
89,344 KB
testcase_25 AC 632 ms
87,936 KB
testcase_26 AC 841 ms
90,496 KB
testcase_27 AC 757 ms
89,216 KB
testcase_28 AC 620 ms
88,448 KB
testcase_29 AC 604 ms
88,576 KB
testcase_30 AC 495 ms
85,760 KB
testcase_31 AC 728 ms
90,624 KB
testcase_32 AC 713 ms
90,624 KB
testcase_33 AC 721 ms
90,624 KB
testcase_34 AC 722 ms
90,752 KB
testcase_35 AC 782 ms
90,752 KB
testcase_36 AC 725 ms
90,624 KB
testcase_37 AC 725 ms
90,880 KB
testcase_38 AC 767 ms
90,368 KB
testcase_39 AC 827 ms
90,240 KB
testcase_40 AC 769 ms
90,752 KB
testcase_41 AC 775 ms
90,624 KB
testcase_42 AC 762 ms
90,368 KB
testcase_43 AC 756 ms
90,240 KB
testcase_44 AC 763 ms
90,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
P = [list(map(int, input().split())) for _ in range(n)]

INF = 10**16
Max = [-INF for _ in range(1 << 5)]
Min = [INF for _ in range(1 << 5)]
for i in range(n):
    for bit in range(1 << 5):
        tmp = 0
        for j in range(5):
            if (bit >> j) & 1:
                tmp += P[i][j]
            else:
                tmp -= P[i][j]
        if tmp > Max[bit]:
            Max[bit] = tmp
        if tmp < Min[bit]:
            Min[bit] = tmp
for i in range(n):
    ans = 0
    for bit in range(1 << 5):
        tmp = 0
        for j in range(5):
            if (bit >> j) & 1:
                tmp += P[i][j]
            else:
                tmp -= P[i][j]
        res = abs(Max[bit] - tmp)
        if res > ans:
            ans = res
        res = abs(Min[bit] - tmp)
        if res > ans:
            ans = res
    print(ans)

0