結果

問題 No.2261 Coffee
ユーザー hir355hir355
提出日時 2023-04-07 21:39:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,100 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 210,124 KB
最終ジャッジ日時 2024-10-02 19:12:54
合計ジャッジ時間 25,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 42 ms
52,736 KB
testcase_02 AC 41 ms
52,608 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 44 ms
59,260 KB
testcase_06 AC 44 ms
59,648 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 46 ms
59,904 KB
testcase_09 AC 45 ms
58,752 KB
testcase_10 AC 59 ms
64,128 KB
testcase_11 AC 55 ms
64,956 KB
testcase_12 AC 53 ms
62,976 KB
testcase_13 AC 54 ms
63,360 KB
testcase_14 AC 56 ms
64,304 KB
testcase_15 AC 54 ms
62,848 KB
testcase_16 AC 54 ms
62,720 KB
testcase_17 AC 114 ms
77,156 KB
testcase_18 AC 111 ms
77,164 KB
testcase_19 AC 109 ms
77,204 KB
testcase_20 AC 106 ms
76,800 KB
testcase_21 AC 109 ms
77,684 KB
testcase_22 AC 105 ms
77,132 KB
testcase_23 AC 112 ms
77,696 KB
testcase_24 AC 981 ms
201,020 KB
testcase_25 AC 849 ms
182,412 KB
testcase_26 AC 1,047 ms
209,400 KB
testcase_27 AC 996 ms
199,632 KB
testcase_28 AC 849 ms
189,508 KB
testcase_29 AC 831 ms
185,740 KB
testcase_30 AC 677 ms
160,968 KB
testcase_31 AC 992 ms
209,888 KB
testcase_32 AC 999 ms
209,632 KB
testcase_33 AC 1,004 ms
210,016 KB
testcase_34 AC 1,023 ms
209,748 KB
testcase_35 AC 1,031 ms
209,884 KB
testcase_36 AC 1,024 ms
209,884 KB
testcase_37 AC 1,036 ms
210,008 KB
testcase_38 AC 1,070 ms
210,124 KB
testcase_39 AC 1,077 ms
209,988 KB
testcase_40 AC 1,100 ms
209,860 KB
testcase_41 AC 1,099 ms
209,864 KB
testcase_42 AC 1,052 ms
210,116 KB
testcase_43 AC 1,076 ms
209,852 KB
testcase_44 AC 1,073 ms
209,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
li = [list(map(int, input().split())) for _ in range(n)]
l = []
for i in range(n):
    t = []
    for j in range(32):
        x = 0
        for k in range(5):
            if (j >> k) & 1:
                x += li[i][k]
            else:
                x -= li[i][k]
        t.append(x)
    l.append(t)
l2 = list(zip(*l))
ma = [0] * 32
mi = [0] * 32
for j in range(32):
    ma[j] = max(l2[j])
    mi[j] = min(l2[j])
for i in range(n):
    ans = 0
    for j in range(32):
        ans = max(ans, ma[j] - l2[j][i], l2[j][i] - mi[j])
    print(ans)
0