結果

問題 No.2261 Coffee
ユーザー Yakumo221Yakumo221
提出日時 2023-08-02 15:35:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 869 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 112,640 KB
最終ジャッジ日時 2024-10-12 11:23:06
合計ジャッジ時間 16,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 42 ms
52,352 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 58 ms
62,080 KB
testcase_11 AC 58 ms
62,592 KB
testcase_12 AC 56 ms
61,568 KB
testcase_13 AC 54 ms
61,056 KB
testcase_14 AC 58 ms
62,208 KB
testcase_15 AC 53 ms
61,056 KB
testcase_16 AC 54 ms
61,056 KB
testcase_17 AC 93 ms
77,056 KB
testcase_18 AC 92 ms
77,568 KB
testcase_19 AC 85 ms
74,368 KB
testcase_20 AC 83 ms
73,728 KB
testcase_21 AC 90 ms
77,440 KB
testcase_22 AC 84 ms
73,600 KB
testcase_23 AC 91 ms
77,440 KB
testcase_24 AC 354 ms
109,952 KB
testcase_25 AC 319 ms
105,344 KB
testcase_26 AC 370 ms
112,256 KB
testcase_27 AC 352 ms
109,696 KB
testcase_28 AC 321 ms
106,624 KB
testcase_29 AC 293 ms
105,728 KB
testcase_30 AC 245 ms
99,328 KB
testcase_31 AC 342 ms
112,256 KB
testcase_32 AC 378 ms
112,256 KB
testcase_33 AC 339 ms
112,256 KB
testcase_34 AC 387 ms
112,384 KB
testcase_35 AC 341 ms
112,384 KB
testcase_36 AC 349 ms
112,512 KB
testcase_37 AC 336 ms
112,384 KB
testcase_38 AC 376 ms
112,512 KB
testcase_39 AC 371 ms
112,512 KB
testcase_40 AC 375 ms
112,512 KB
testcase_41 AC 383 ms
112,640 KB
testcase_42 AC 380 ms
112,640 KB
testcase_43 AC 374 ms
112,512 KB
testcase_44 AC 380 ms
112,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

n = int(input())

# mmlist[i] = [Max, min]
mmlist = [[0,0] for i in range(32)]
tastelist = [[] for i in range(n)]
signs = list(product([-1,1], repeat=5))
for i in range(n):
    a,b,c,d,e = map(int, input().split())

    for j in range(32):
        v,w,x,y,z = signs[j]
        rot = a*v + b*w + c*x + d*y + e*z
        if i == 0:
            mmlist[j][0] = rot
            mmlist[j][1] = rot
        else:
            if mmlist[j][0] < rot:
                mmlist[j][0] = rot
            if mmlist[j][1] > rot:
                mmlist[j][1] = rot
        tastelist[i].append(rot)
        

ans = 0

# print(tastelist)
# print(mmlist)

for i in range(n):
    ans = 0
    for j in range(32):
        dist = max(mmlist[j][0] - tastelist[i][j], mmlist[j][1] - tastelist[i][j])
        if ans < dist:
            ans = dist
    
    print(ans)
0