結果

問題 No.2261 Coffee
ユーザー とりゐとりゐ
提出日時 2023-04-01 20:18:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 94,760 KB
最終ジャッジ日時 2024-09-24 11:14:28
合計ジャッジ時間 9,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,068 KB
testcase_01 AC 38 ms
52,944 KB
testcase_02 AC 39 ms
52,960 KB
testcase_03 AC 38 ms
52,444 KB
testcase_04 AC 39 ms
52,428 KB
testcase_05 AC 39 ms
53,292 KB
testcase_06 AC 38 ms
53,156 KB
testcase_07 AC 38 ms
53,552 KB
testcase_08 AC 39 ms
53,756 KB
testcase_09 AC 38 ms
52,836 KB
testcase_10 AC 52 ms
63,536 KB
testcase_11 AC 54 ms
63,836 KB
testcase_12 AC 50 ms
62,812 KB
testcase_13 AC 49 ms
61,980 KB
testcase_14 AC 53 ms
63,404 KB
testcase_15 AC 48 ms
62,276 KB
testcase_16 AC 49 ms
62,716 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 嘘

from sys import stdin
input=lambda :stdin.readline()[:-1]

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

c=[(sum(a[i]),i) for i in range(n)]
c.sort()
use=[]
for i in range(100):
  if c:
    use.append(c.pop()[1])

c=c[::-1]
for i in range(100):
  if c:
    use.append(c.pop()[1])

for i in range(n):
  ans=0
  for j in use:
    diff=0
    for k in range(5):
      diff+=abs(a[i][k]-a[j][k])
    ans=max(ans,diff)
  print(ans)
0