結果

問題 No.2261 Coffee
ユーザー ntudantuda
提出日時 2023-04-08 09:53:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 123,404 KB
最終ジャッジ日時 2024-10-03 05:48:24
合計ジャッジ時間 18,246 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,932 KB
testcase_01 AC 39 ms
52,684 KB
testcase_02 AC 36 ms
52,712 KB
testcase_03 AC 37 ms
52,128 KB
testcase_04 AC 38 ms
52,644 KB
testcase_05 AC 41 ms
59,544 KB
testcase_06 AC 43 ms
59,744 KB
testcase_07 AC 37 ms
52,356 KB
testcase_08 AC 43 ms
60,860 KB
testcase_09 AC 42 ms
59,144 KB
testcase_10 AC 56 ms
64,912 KB
testcase_11 AC 52 ms
63,744 KB
testcase_12 AC 50 ms
64,564 KB
testcase_13 AC 50 ms
63,740 KB
testcase_14 AC 53 ms
64,688 KB
testcase_15 AC 49 ms
63,024 KB
testcase_16 AC 50 ms
62,492 KB
testcase_17 AC 97 ms
77,992 KB
testcase_18 AC 96 ms
77,856 KB
testcase_19 AC 94 ms
78,204 KB
testcase_20 AC 95 ms
77,596 KB
testcase_21 AC 100 ms
77,780 KB
testcase_22 AC 95 ms
77,916 KB
testcase_23 AC 99 ms
77,612 KB
testcase_24 AC 518 ms
120,020 KB
testcase_25 AC 463 ms
113,568 KB
testcase_26 AC 592 ms
122,552 KB
testcase_27 AC 556 ms
119,280 KB
testcase_28 AC 438 ms
115,476 KB
testcase_29 AC 438 ms
114,760 KB
testcase_30 AC 356 ms
106,324 KB
testcase_31 AC 525 ms
122,856 KB
testcase_32 AC 510 ms
123,220 KB
testcase_33 AC 514 ms
123,400 KB
testcase_34 AC 516 ms
123,404 KB
testcase_35 AC 578 ms
123,124 KB
testcase_36 AC 518 ms
123,024 KB
testcase_37 AC 531 ms
123,060 KB
testcase_38 AC 565 ms
122,684 KB
testcase_39 AC 594 ms
122,780 KB
testcase_40 AC 556 ms
123,176 KB
testcase_41 AC 560 ms
122,788 KB
testcase_42 AC 554 ms
122,960 KB
testcase_43 AC 564 ms
122,960 KB
testcase_44 AC 570 ms
122,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ABC = [list(map(int, input().split())) for _ in range(N)]
X = [[0] * 32 for _ in range(N)]
INF = 10 ** 16
MAXX = [-INF] * 32

for i in range(N):
    A = ABC[i]
    for j in range(32):
        tmp = 0
        x = j
        for k in range(5):
            if x & 1:
                tmp += A[k]
            else:
                tmp -= A[k]
            x >>= 1
        X[i][j] = tmp
        MAXX[j] = max(MAXX[j], X[i][j])
for i in range(N):
    ans = 0
    for j in range(32):
        ans = max(ans, MAXX[j] - X[i][j])
    print(ans)
0