結果

問題 No.2261 Coffee
ユーザー H20H20
提出日時 2023-04-07 21:42:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 939 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,800 KB
最終ジャッジ日時 2024-10-02 19:15:54
合計ジャッジ時間 23,161 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 AC 43 ms
53,632 KB
testcase_03 AC 42 ms
53,888 KB
testcase_04 AC 42 ms
54,016 KB
testcase_05 AC 46 ms
60,544 KB
testcase_06 AC 49 ms
61,056 KB
testcase_07 AC 42 ms
53,504 KB
testcase_08 AC 50 ms
61,440 KB
testcase_09 AC 47 ms
60,416 KB
testcase_10 AC 68 ms
69,504 KB
testcase_11 AC 68 ms
69,504 KB
testcase_12 AC 65 ms
69,120 KB
testcase_13 AC 65 ms
68,992 KB
testcase_14 AC 69 ms
70,144 KB
testcase_15 AC 68 ms
69,504 KB
testcase_16 AC 67 ms
68,992 KB
testcase_17 AC 127 ms
78,080 KB
testcase_18 AC 124 ms
77,812 KB
testcase_19 AC 123 ms
77,568 KB
testcase_20 AC 118 ms
77,364 KB
testcase_21 AC 123 ms
77,952 KB
testcase_22 AC 120 ms
77,340 KB
testcase_23 AC 127 ms
77,644 KB
testcase_24 AC 872 ms
90,368 KB
testcase_25 AC 760 ms
88,704 KB
testcase_26 AC 939 ms
91,232 KB
testcase_27 AC 864 ms
89,984 KB
testcase_28 AC 764 ms
89,728 KB
testcase_29 AC 755 ms
89,600 KB
testcase_30 AC 616 ms
86,816 KB
testcase_31 AC 877 ms
92,288 KB
testcase_32 AC 884 ms
92,604 KB
testcase_33 AC 902 ms
92,288 KB
testcase_34 AC 892 ms
92,264 KB
testcase_35 AC 889 ms
92,160 KB
testcase_36 AC 902 ms
92,364 KB
testcase_37 AC 890 ms
92,800 KB
testcase_38 AC 899 ms
91,392 KB
testcase_39 AC 922 ms
90,880 KB
testcase_40 AC 903 ms
91,264 KB
testcase_41 AC 906 ms
90,880 KB
testcase_42 AC 914 ms
91,264 KB
testcase_43 AC 918 ms
91,264 KB
testcase_44 AC 914 ms
91,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
ABCDE = [list(map(int, input().split())) for _ in range(N)]
candidate = set()
for i in range(2 ** 5):
    PATTERN = []
    for j in range(5):
        if ((i >> j) & 1):
            PATTERN.append(10**16)
        else:
            PATTERN.append(0)
    max_v = 0
    max_j = 0
    for j,(abcde) in enumerate(ABCDE):
        v = 0
        for p,a in zip(PATTERN,abcde):
            v+=abs(p-a)
        if max_v<v:
            max_v = v
            max_j = j
    candidate.add(max_j)
for abcde in ABCDE:
    max_v = 0
    for i in candidate:
        v = 0
        for c,a in zip(ABCDE[i],abcde):
            v+=abs(c-a)
        max_v = max(max_v,v)
    print(max_v)
0