結果
問題 | No.1715 Dinner 2 |
ユーザー | lloyz |
提出日時 | 2021-11-21 01:07:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,091 bytes |
コンパイル時間 | 234 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-06-12 20:28:44 |
合計ジャッジ時間 | 2,319 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | AC | 29 ms
10,880 KB |
testcase_05 | AC | 28 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | AC | 28 ms
10,752 KB |
testcase_08 | AC | 27 ms
10,752 KB |
testcase_09 | AC | 28 ms
10,752 KB |
testcase_10 | WA | - |
testcase_11 | AC | 29 ms
10,880 KB |
testcase_12 | AC | 30 ms
11,008 KB |
testcase_13 | AC | 30 ms
10,880 KB |
testcase_14 | AC | 31 ms
11,008 KB |
testcase_15 | AC | 31 ms
10,880 KB |
testcase_16 | AC | 30 ms
10,880 KB |
testcase_17 | AC | 30 ms
10,880 KB |
testcase_18 | WA | - |
testcase_19 | AC | 27 ms
10,752 KB |
testcase_20 | AC | 27 ms
10,752 KB |
testcase_21 | WA | - |
testcase_22 | AC | 26 ms
10,752 KB |
testcase_23 | AC | 28 ms
10,752 KB |
testcase_24 | AC | 28 ms
10,752 KB |
testcase_25 | AC | 28 ms
10,752 KB |
testcase_26 | AC | 28 ms
10,752 KB |
testcase_27 | AC | 28 ms
10,752 KB |
testcase_28 | AC | 27 ms
10,752 KB |
testcase_29 | AC | 30 ms
10,752 KB |
testcase_30 | AC | 29 ms
10,752 KB |
testcase_31 | AC | 29 ms
10,752 KB |
testcase_32 | AC | 32 ms
10,880 KB |
testcase_33 | AC | 32 ms
10,880 KB |
testcase_34 | AC | 32 ms
11,008 KB |
testcase_35 | AC | 32 ms
11,008 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
n, d = map(int, input().split()) P = [list(map(int, input().split())) for _ in range(n)] Plus = [] Zero = [] Nega = [] for i in range(n): if P[i][0] <= P[i][1]: Plus.append(P[i]) elif P[i][0] == P[i][1]: Zero.append(P[i]) else: Nega.append(P[i]) if len(Plus) >= 2: Plus.sort(key=lambda x: x[0]) print(min(-Plus[0][0], -Plus[0][0] + Plus[0][1] - Plus[1][0])) elif len(Plus) == 1: if len(Zero) >= 1: Plus.sort(key=lambda x: x[0]) Zero.sort(key=lambda x: x[0]) print(max(-Plus[0][0], -Zero[0][0])) else: Nega.sort(key=lambda x: x[1] - x[0], reverse=True) print((-Plus[0][0] + Plus[0][1]) * (n - n // 2) + (-Nega[0][0] + Nega[0][1]) * (n // 2)) else: if len(Zero) >= 1: Nega.sort(key=lambda x: x[1] - x[0], reverse=True) print((-Nega[0][0] + Nega[0][1]) * (n // 2)) else: Nega.sort(key=lambda x: x[1] - x[0], reverse=True) print((-Nega[0][0] + Nega[0][1]) * (n - n // 2) + \ (-Nega[1][0] + Nega[1][1]) * (n // 2))