結果
問題 | No.2261 Coffee |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2023-04-07 21:40:40 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 500 bytes |
コンパイル時間 | 247 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 200,100 KB |
最終ジャッジ日時 | 2024-10-02 19:13:35 |
合計ジャッジ時間 | 7,028 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
57,472 KB |
testcase_01 | AC | 38 ms
52,480 KB |
testcase_02 | AC | 38 ms
52,608 KB |
testcase_03 | AC | 38 ms
52,224 KB |
testcase_04 | AC | 38 ms
52,096 KB |
testcase_05 | AC | 39 ms
52,608 KB |
testcase_06 | AC | 38 ms
52,224 KB |
testcase_07 | AC | 39 ms
52,212 KB |
testcase_08 | AC | 38 ms
51,840 KB |
testcase_09 | AC | 42 ms
52,608 KB |
testcase_10 | AC | 56 ms
64,896 KB |
testcase_11 | AC | 59 ms
65,536 KB |
testcase_12 | AC | 50 ms
62,464 KB |
testcase_13 | AC | 49 ms
62,208 KB |
testcase_14 | AC | 58 ms
65,536 KB |
testcase_15 | AC | 47 ms
61,184 KB |
testcase_16 | AC | 50 ms
61,696 KB |
testcase_17 | AC | 167 ms
77,788 KB |
testcase_18 | AC | 162 ms
77,664 KB |
testcase_19 | AC | 155 ms
77,436 KB |
testcase_20 | AC | 145 ms
77,612 KB |
testcase_21 | AC | 167 ms
78,080 KB |
testcase_22 | AC | 153 ms
77,640 KB |
testcase_23 | AC | 171 ms
78,148 KB |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
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 | -- | - |
ソースコード
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 = [] 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,j]) l.sort() mi = l[0][0] ma = l[-1][0] for x,ind in l: ans[ind] = max(ans[ind],ma-x,x-mi) for i in ans: print(i)