結果
問題 | No.1251 絶対に間違ってはいけない最小化問題 |
ユーザー | anagohirame |
提出日時 | 2020-10-09 22:09:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 239 bytes |
コンパイル時間 | 288 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 114,136 KB |
最終ジャッジ日時 | 2024-07-20 11:46:50 |
合計ジャッジ時間 | 6,213 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
57,088 KB |
testcase_01 | AC | 40 ms
51,712 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 37 ms
51,712 KB |
testcase_04 | AC | 37 ms
51,712 KB |
testcase_05 | AC | 36 ms
51,840 KB |
testcase_06 | AC | 37 ms
51,968 KB |
testcase_07 | AC | 37 ms
51,456 KB |
testcase_08 | AC | 44 ms
59,008 KB |
testcase_09 | AC | 43 ms
58,624 KB |
testcase_10 | AC | 37 ms
51,840 KB |
testcase_11 | AC | 36 ms
51,968 KB |
testcase_12 | AC | 40 ms
58,240 KB |
testcase_13 | AC | 40 ms
51,968 KB |
testcase_14 | AC | 47 ms
58,624 KB |
testcase_15 | AC | 43 ms
58,752 KB |
testcase_16 | AC | 43 ms
58,880 KB |
testcase_17 | AC | 43 ms
58,624 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
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()) a = list(map(int, input().split())) b = list(map(int, input().split())) ans1, ans2 = None, 10**15 for z in a: tmp = 0 for x, y in zip(a, b): tmp += y * abs(z - x) if tmp < ans2: ans1, ans2 = z, tmp print(ans1, ans2)