結果

問題 No.2261 Coffee
ユーザー karinohitokarinohito
提出日時 2023-03-20 00:26:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 539 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 101,208 KB
最終ジャッジ日時 2024-09-18 13:55:50
合計ジャッジ時間 12,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 42 ms
51,968 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 58 ms
62,464 KB
testcase_11 AC 59 ms
62,720 KB
testcase_12 AC 57 ms
62,592 KB
testcase_13 AC 56 ms
62,080 KB
testcase_14 AC 58 ms
62,720 KB
testcase_15 AC 55 ms
61,824 KB
testcase_16 AC 56 ms
62,464 KB
testcase_17 AC 122 ms
77,568 KB
testcase_18 AC 118 ms
77,312 KB
testcase_19 AC 118 ms
76,928 KB
testcase_20 AC 118 ms
76,800 KB
testcase_21 AC 122 ms
77,440 KB
testcase_22 AC 119 ms
77,184 KB
testcase_23 AC 119 ms
77,312 KB
testcase_24 AC 383 ms
99,856 KB
testcase_25 AC 340 ms
96,232 KB
testcase_26 AC 397 ms
100,336 KB
testcase_27 AC 370 ms
99,564 KB
testcase_28 AC 315 ms
96,120 KB
testcase_29 AC 312 ms
96,232 KB
testcase_30 AC 271 ms
91,404 KB
testcase_31 AC 366 ms
100,380 KB
testcase_32 AC 376 ms
99,772 KB
testcase_33 AC 353 ms
99,876 KB
testcase_34 AC 358 ms
99,796 KB
testcase_35 AC 364 ms
100,028 KB
testcase_36 AC 361 ms
100,264 KB
testcase_37 AC 355 ms
99,896 KB
testcase_38 AC 391 ms
100,716 KB
testcase_39 AC 408 ms
100,348 KB
testcase_40 AC 401 ms
100,876 KB
testcase_41 AC 411 ms
100,500 KB
testcase_42 AC 391 ms
100,468 KB
testcase_43 AC 407 ms
101,208 KB
testcase_44 AC 403 ms
100,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = []
for i in range(N):
    row = list(map(int, input().split()))
    A.append(row)

AN = [0] * N
for bit in range(1<<4):
    F=[0]*N
    M=-1000000000000000000
    m=1000000000000000000
    for i in range(N):
        for j in range(5):
            if(bit&(1<<j)):
                F[i]=F[i]+A[i][j]
            else:
                F[i]=F[i]-A[i][j]
        M=max(M,F[i])
        m=min(m,F[i])
    for i in range(N):
        AN[i]=max(AN[i],F[i]-m)
        AN[i]=max(AN[i],M-F[i])

for i in range(N):
    print(AN[i])

0