結果
問題 | No.2008 Super Worker |
ユーザー | ansain |
提出日時 | 2022-07-15 21:48:16 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,531 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 82,384 KB |
実行使用メモリ | 151,468 KB |
最終ジャッジ日時 | 2024-06-27 17:28:03 |
合計ジャッジ時間 | 28,208 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
88,412 KB |
testcase_01 | AC | 132 ms
88,324 KB |
testcase_02 | AC | 131 ms
88,448 KB |
testcase_03 | AC | 131 ms
88,524 KB |
testcase_04 | AC | 131 ms
88,640 KB |
testcase_05 | AC | 130 ms
88,472 KB |
testcase_06 | AC | 132 ms
88,572 KB |
testcase_07 | AC | 129 ms
88,352 KB |
testcase_08 | AC | 136 ms
88,476 KB |
testcase_09 | AC | 135 ms
88,684 KB |
testcase_10 | AC | 137 ms
88,116 KB |
testcase_11 | AC | 134 ms
88,464 KB |
testcase_12 | AC | 133 ms
88,320 KB |
testcase_13 | AC | 154 ms
89,624 KB |
testcase_14 | AC | 158 ms
89,476 KB |
testcase_15 | AC | 154 ms
89,900 KB |
testcase_16 | AC | 156 ms
89,604 KB |
testcase_17 | AC | 158 ms
89,512 KB |
testcase_18 | AC | 160 ms
89,776 KB |
testcase_19 | AC | 151 ms
89,568 KB |
testcase_20 | AC | 155 ms
89,760 KB |
testcase_21 | AC | 156 ms
89,472 KB |
testcase_22 | AC | 151 ms
89,572 KB |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 1,986 ms
151,468 KB |
testcase_32 | TLE | - |
testcase_33 | AC | 387 ms
150,476 KB |
testcase_34 | TLE | - |
testcase_35 | AC | 390 ms
148,700 KB |
ソースコード
import sys from collections import defaultdict, Counter, deque from itertools import permutations, combinations, product, combinations_with_replacement, groupby, accumulate import operator from math import sqrt, gcd, factorial from fractions import Fraction #from math import isqrt, prod, comb #python3.8用(notpypy) #from bisect import bisect_left, bisect_right #from functools import lru_cache, reduce #from heapq import heappush, heappop, heapify, heappushpop, heapreplace #import numpy as np #import networkx as nx #from networkx.utils import UnionFind #from numba import njit, b1, i1, i4, i8, f8 #numba例 @njit(i1(i4[:], i8[:, :]),cache=True) 引数i4配列、i8 2次元配列,戻り値i1 #from scipy.sparse import csr_matrix #from scipy.sparse.csgraph import shortest_path, floyd_warshall, dijkstra, bellman_ford, johnson, NegativeCycleError, maximum_bipartite_matching, maximum_flow, minimum_spanning_tree def input(): return sys.stdin.readline().rstrip() def divceil(n, k): return 1+(n-1)//k # n/kの切り上げを返す def yn(hantei, yes='Yes', no='No'): print(yes if hantei else no) def main(): mod = 10**9+7 mod2 = 998244353 n=int(input()) A=list(map(int, input().split())) B=list(map(int, input().split())) comp=[(Fraction(BB-1,AA),AA,BB) for AA,BB in zip(A,B)] comp.sort(key=operator.itemgetter(0),reverse=True) level=1 money=0 for _,AA,BB in comp: money+=AA*level level*=BB level%=mod print(money%mod) if __name__ == '__main__': main()