結果

問題 No.2261 Coffee
ユーザー hir355hir355
提出日時 2023-04-07 21:38:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 80,560 KB
最終ジャッジ日時 2024-10-02 19:11:33
合計ジャッジ時間 13,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
61,240 KB
testcase_01 AC 42 ms
58,664 KB
testcase_02 AC 39 ms
53,364 KB
testcase_03 AC 39 ms
52,804 KB
testcase_04 AC 41 ms
58,196 KB
testcase_05 AC 43 ms
59,676 KB
testcase_06 AC 45 ms
62,272 KB
testcase_07 AC 39 ms
53,692 KB
testcase_08 AC 47 ms
61,672 KB
testcase_09 AC 44 ms
60,284 KB
testcase_10 AC 63 ms
69,940 KB
testcase_11 AC 63 ms
70,348 KB
testcase_12 AC 57 ms
68,432 KB
testcase_13 AC 56 ms
67,464 KB
testcase_14 AC 60 ms
70,872 KB
testcase_15 AC 55 ms
67,724 KB
testcase_16 AC 57 ms
67,864 KB
testcase_17 AC 1,273 ms
80,520 KB
testcase_18 AC 1,135 ms
80,560 KB
testcase_19 AC 930 ms
79,584 KB
testcase_20 AC 723 ms
79,380 KB
testcase_21 AC 1,246 ms
80,132 KB
testcase_22 AC 776 ms
79,564 KB
testcase_23 AC 1,362 ms
80,452 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

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))
for i in range(n):
    ans = 0
    for j in range(32):
        ans = max(ans, max(l2[j]) - l2[j][i], l2[j][i] - min(l2[j]))
    print(ans)
0