結果

問題 No.2261 Coffee
ユーザー ニックネームニックネーム
提出日時 2023-04-07 22:19:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 122,632 KB
最終ジャッジ日時 2024-10-02 19:48:18
合計ジャッジ時間 12,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 58 ms
64,768 KB
testcase_11 AC 60 ms
65,280 KB
testcase_12 AC 52 ms
62,464 KB
testcase_13 AC 53 ms
61,824 KB
testcase_14 AC 57 ms
64,384 KB
testcase_15 AC 48 ms
60,928 KB
testcase_16 AC 51 ms
62,208 KB
testcase_17 AC 109 ms
77,184 KB
testcase_18 AC 111 ms
77,312 KB
testcase_19 AC 109 ms
77,440 KB
testcase_20 AC 107 ms
76,928 KB
testcase_21 AC 111 ms
78,080 KB
testcase_22 AC 109 ms
77,184 KB
testcase_23 AC 110 ms
77,312 KB
testcase_24 AC 364 ms
120,004 KB
testcase_25 AC 340 ms
112,896 KB
testcase_26 AC 379 ms
119,952 KB
testcase_27 AC 379 ms
119,940 KB
testcase_28 AC 309 ms
116,628 KB
testcase_29 AC 312 ms
118,776 KB
testcase_30 AC 275 ms
108,216 KB
testcase_31 AC 353 ms
122,108 KB
testcase_32 AC 354 ms
121,376 KB
testcase_33 AC 344 ms
121,844 KB
testcase_34 AC 356 ms
122,352 KB
testcase_35 AC 351 ms
122,108 KB
testcase_36 AC 360 ms
122,376 KB
testcase_37 AC 369 ms
122,632 KB
testcase_38 AC 417 ms
119,028 KB
testcase_39 AC 398 ms
118,500 KB
testcase_40 AC 398 ms
118,648 KB
testcase_41 AC 396 ms
118,864 KB
testcase_42 AC 388 ms
118,556 KB
testcase_43 AC 383 ms
119,212 KB
testcase_44 AC 386 ms
118,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p = [list(map(int,input().split())) for _ in range(n)]
ans = [0]*n
for s in range(16):
    q = []
    for pi in p:
        q.append(pi[4])
        for i in range(4):
            if s>>i&1: q[-1] += pi[i]
            else: q[-1] -= pi[i]
    ma = max(q); mi = min(q)
    for i,v in enumerate(q): ans[i] = max(ans[i],ma-v,v-mi)
print(*ans,sep="\n")
0