結果

問題 No.2261 Coffee
ユーザー fiblonariafiblonaria
提出日時 2023-04-11 00:37:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,009 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 97,360 KB
最終ジャッジ日時 2024-10-06 12:08:24
合計ジャッジ時間 24,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 44 ms
58,368 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 41 ms
58,496 KB
testcase_05 AC 44 ms
59,136 KB
testcase_06 AC 43 ms
59,136 KB
testcase_07 AC 41 ms
57,344 KB
testcase_08 AC 47 ms
59,136 KB
testcase_09 AC 44 ms
59,392 KB
testcase_10 AC 62 ms
70,656 KB
testcase_11 AC 64 ms
72,960 KB
testcase_12 AC 59 ms
68,864 KB
testcase_13 AC 59 ms
67,656 KB
testcase_14 AC 63 ms
70,528 KB
testcase_15 AC 58 ms
66,688 KB
testcase_16 AC 61 ms
67,968 KB
testcase_17 AC 113 ms
77,048 KB
testcase_18 AC 108 ms
76,868 KB
testcase_19 AC 104 ms
77,056 KB
testcase_20 AC 100 ms
77,056 KB
testcase_21 AC 106 ms
77,308 KB
testcase_22 AC 101 ms
76,780 KB
testcase_23 AC 109 ms
76,972 KB
testcase_24 AC 775 ms
93,056 KB
testcase_25 AC 698 ms
90,536 KB
testcase_26 AC 953 ms
94,080 KB
testcase_27 AC 822 ms
92,508 KB
testcase_28 AC 677 ms
93,692 KB
testcase_29 AC 670 ms
93,184 KB
testcase_30 AC 516 ms
89,600 KB
testcase_31 AC 779 ms
97,360 KB
testcase_32 AC 783 ms
97,060 KB
testcase_33 AC 796 ms
96,788 KB
testcase_34 AC 900 ms
97,052 KB
testcase_35 AC 825 ms
96,780 KB
testcase_36 AC 1,009 ms
96,780 KB
testcase_37 AC 976 ms
96,896 KB
testcase_38 AC 882 ms
94,008 KB
testcase_39 AC 918 ms
94,208 KB
testcase_40 AC 902 ms
94,336 KB
testcase_41 AC 855 ms
94,080 KB
testcase_42 AC 867 ms
94,336 KB
testcase_43 AC 866 ms
94,428 KB
testcase_44 AC 877 ms
93,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def calc(A, index):
	ans = 0
	for i in range(5):
		ans += A[i] * (index % 2 * 2 - 1)
		index //= 2
	return ans
N = int(input())
items = [None for i in range(N)]
dp = [-float('inf') for i in range(2 ** 5)]
for i in range(N):
	items[i] = list(map(int, input().split()))
	for j in range(2 ** 5):
		dp[j] = max(dp[j], calc(items[i], j))
for i in range(N):
	ans = -float('inf')
	for j in range(2 ** 5):
		ans = max(ans, dp[j] - calc(items[i], j))
	print(ans)
0