結果

問題 No.2261 Coffee
ユーザー okapinokapin
提出日時 2023-04-07 22:22:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 89,912 KB
最終ジャッジ日時 2024-10-02 19:50:42
合計ジャッジ時間 11,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,936 KB
testcase_01 AC 38 ms
52,592 KB
testcase_02 AC 38 ms
52,692 KB
testcase_03 AC 38 ms
53,924 KB
testcase_04 AC 39 ms
53,132 KB
testcase_05 AC 38 ms
53,076 KB
testcase_06 AC 38 ms
52,916 KB
testcase_07 AC 38 ms
53,548 KB
testcase_08 AC 38 ms
53,712 KB
testcase_09 AC 38 ms
53,416 KB
testcase_10 AC 55 ms
66,440 KB
testcase_11 AC 56 ms
65,896 KB
testcase_12 AC 57 ms
65,860 KB
testcase_13 AC 55 ms
65,176 KB
testcase_14 AC 57 ms
67,136 KB
testcase_15 AC 48 ms
62,724 KB
testcase_16 AC 55 ms
65,672 KB
testcase_17 AC 82 ms
76,980 KB
testcase_18 AC 80 ms
77,212 KB
testcase_19 AC 79 ms
76,988 KB
testcase_20 AC 78 ms
76,948 KB
testcase_21 AC 81 ms
76,996 KB
testcase_22 AC 79 ms
76,620 KB
testcase_23 AC 81 ms
77,064 KB
testcase_24 AC 338 ms
88,448 KB
testcase_25 AC 287 ms
86,732 KB
testcase_26 AC 355 ms
89,096 KB
testcase_27 AC 322 ms
88,296 KB
testcase_28 AC 267 ms
87,120 KB
testcase_29 AC 267 ms
87,052 KB
testcase_30 AC 221 ms
84,860 KB
testcase_31 AC 305 ms
89,160 KB
testcase_32 AC 309 ms
89,464 KB
testcase_33 AC 319 ms
89,364 KB
testcase_34 AC 305 ms
89,308 KB
testcase_35 AC 309 ms
89,432 KB
testcase_36 AC 307 ms
89,504 KB
testcase_37 AC 308 ms
89,228 KB
testcase_38 AC 341 ms
89,432 KB
testcase_39 AC 356 ms
89,600 KB
testcase_40 AC 356 ms
89,440 KB
testcase_41 AC 344 ms
89,584 KB
testcase_42 AC 360 ms
89,288 KB
testcase_43 AC 343 ms
89,912 KB
testcase_44 AC 341 ms
89,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
arr = [[0]*n for _ in range(16)]
for i in range(n):
    a = list(map(int, input().split()))
    for bit in range(1 << 4):
        amo = a[0]
        for j in range(4):
            if bit & (1 << j):
                amo += a[j+1]
            else:
                amo -= a[j+1]
        arr[bit][i] = amo

mx = [0]*16
mn = [0]*16
for i in range(16):
    mx[i], mn[i] = max(arr[i]), min(arr[i])
for j in range(n):
    res = 0
    for i in range(16):
        res = max(res, mx[i]-arr[i][j], arr[i][j]-mn[i])
    print(res)
0