結果

問題 No.2261 Coffee
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-04-07 21:42:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,948 KB
最終ジャッジ日時 2024-10-02 19:15:21
合計ジャッジ時間 12,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 52 ms
62,208 KB
testcase_11 AC 56 ms
63,488 KB
testcase_12 AC 51 ms
62,336 KB
testcase_13 AC 50 ms
61,824 KB
testcase_14 AC 51 ms
61,824 KB
testcase_15 AC 51 ms
61,440 KB
testcase_16 AC 50 ms
61,568 KB
testcase_17 AC 111 ms
77,440 KB
testcase_18 AC 111 ms
77,184 KB
testcase_19 AC 112 ms
77,824 KB
testcase_20 AC 107 ms
77,184 KB
testcase_21 AC 109 ms
77,056 KB
testcase_22 AC 110 ms
77,184 KB
testcase_23 AC 113 ms
77,824 KB
testcase_24 AC 391 ms
119,496 KB
testcase_25 AC 341 ms
113,456 KB
testcase_26 AC 415 ms
118,108 KB
testcase_27 AC 387 ms
117,968 KB
testcase_28 AC 314 ms
117,468 KB
testcase_29 AC 324 ms
116,196 KB
testcase_30 AC 271 ms
106,436 KB
testcase_31 AC 416 ms
118,112 KB
testcase_32 AC 391 ms
119,680 KB
testcase_33 AC 388 ms
118,308 KB
testcase_34 AC 388 ms
118,484 KB
testcase_35 AC 359 ms
119,948 KB
testcase_36 AC 384 ms
119,428 KB
testcase_37 AC 370 ms
118,692 KB
testcase_38 AC 402 ms
118,664 KB
testcase_39 AC 396 ms
118,700 KB
testcase_40 AC 413 ms
119,696 KB
testcase_41 AC 412 ms
119,196 KB
testcase_42 AC 403 ms
119,212 KB
testcase_43 AC 408 ms
118,276 KB
testcase_44 AC 393 ms
118,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ABCDE = [list(map(int,input().split())) for i in range(n)]

ans = [0]*n

for i in range(1<<5):
    if i & 1:
        continue

    l = []
    mi = 10**30
    ma = -10**30
    for j in range(n):

        num = 0
        for x in range(5):
            if i >> x & 1:
                num += ABCDE[j][x]
            else:
                num -= ABCDE[j][x]

        l.append(num)
        mi = min(mi,num)
        ma = max(ma,num)

    for ind,x in enumerate(l):
        ans[ind] = max(ans[ind],ma-x,x-mi)
for i in ans:
    print(i)
0