結果

問題 No.2008 Super Worker
ユーザー Kiri8128Kiri8128
提出日時 2022-04-27 01:54:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,303 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 135,000 KB
最終ジャッジ日時 2024-06-28 07:34:31
合計ジャッジ時間 17,405 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,544 KB
testcase_01 AC 44 ms
55,048 KB
testcase_02 AC 43 ms
55,120 KB
testcase_03 AC 43 ms
55,832 KB
testcase_04 AC 44 ms
56,448 KB
testcase_05 AC 43 ms
54,784 KB
testcase_06 AC 45 ms
55,188 KB
testcase_07 AC 44 ms
55,764 KB
testcase_08 AC 42 ms
55,744 KB
testcase_09 AC 44 ms
56,312 KB
testcase_10 AC 43 ms
56,028 KB
testcase_11 AC 45 ms
55,380 KB
testcase_12 AC 44 ms
55,944 KB
testcase_13 AC 59 ms
70,796 KB
testcase_14 AC 64 ms
73,088 KB
testcase_15 AC 63 ms
70,784 KB
testcase_16 AC 65 ms
71,936 KB
testcase_17 AC 65 ms
72,704 KB
testcase_18 AC 72 ms
76,928 KB
testcase_19 AC 55 ms
67,268 KB
testcase_20 AC 62 ms
70,784 KB
testcase_21 AC 63 ms
70,784 KB
testcase_22 AC 56 ms
67,360 KB
testcase_23 AC 1,282 ms
133,688 KB
testcase_24 AC 1,288 ms
134,420 KB
testcase_25 AC 1,261 ms
133,648 KB
testcase_26 AC 1,282 ms
133,904 KB
testcase_27 AC 1,303 ms
133,880 KB
testcase_28 AC 1,295 ms
127,500 KB
testcase_29 AC 1,287 ms
128,128 KB
testcase_30 AC 1,271 ms
127,488 KB
testcase_31 AC 1,293 ms
127,632 KB
testcase_32 AC 1,277 ms
127,492 KB
testcase_33 AC 211 ms
127,668 KB
testcase_34 AC 1,262 ms
128,176 KB
testcase_35 AC 212 ms
135,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cmp_to_key
def cmp(a, b):
    x, y = a[0], a[1] - 1
    xx, yy = b[0], b[1] - 1
    s = x * yy - y * xx
    return 1 if s > 0 else -1 if s < 0 else 0

cmpkey = cmp_to_key(cmp)

P = 10 ** 9 + 7
N = int(input())
X = sorted([(int(a), int(b)) for a, b in zip(input().split(), input().split())], key = cmpkey)
ans = 0
l = 1
for a, b in X:
    ans = (ans + l * a) % P
    l = l * b % P
print(ans)
0