File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import sys
2+
3+ read = lambda : sys .stdin .readline ().rstrip ()
4+
5+
6+ class Problem :
7+ def __init__ (self ):
8+ self .n = int (read ())
9+ self .data = sorted (list (map (int , read ().split ())))
10+
11+ self .mod = 1_000_000_007
12+
13+ def solve (self ) -> None :
14+ cached = [1 for _ in range (self .n )]
15+ for idx in range (1 , self .n ):
16+ cached [idx ] = (cached [idx - 1 ] * 2 ) % self .mod
17+
18+ answer = 0
19+ for idx in range (self .n ):
20+ answer += self .data [idx ] * (cached [idx ] - cached [self .n - idx - 1 ])
21+ answer %= self .mod
22+
23+ print (answer )
24+
25+
26+ if __name__ == "__main__" :
27+ Problem ().solve ()
Original file line number Diff line number Diff line change 1+ [
2+ {
3+ "input" : [
4+ " 3" ,
5+ " 5 2 8"
6+ ],
7+ "expected" : [
8+ " 18"
9+ ]
10+ },
11+ {
12+ "input" : [
13+ " 6" ,
14+ " 1 4 5 5 6 10"
15+ ],
16+ "expected" : [
17+ " 307"
18+ ]
19+ }
20+ ]
Original file line number Diff line number Diff line change 1+ import json
2+ import os .path
3+ import unittest
4+ from io import StringIO
5+ from unittest .mock import patch
6+
7+ from parameterized import parameterized
8+
9+ from main import Problem
10+
11+
12+ def load_sample (filename : str ):
13+ path = os .path .join (os .path .dirname (os .path .abspath (__file__ )), filename )
14+
15+ with open (path , "r" ) as file :
16+ return [(case ["input" ], case ["expected" ]) for case in json .load (file )]
17+
18+
19+ class TestCase (unittest .TestCase ):
20+ @parameterized .expand (load_sample ("sample.json" ))
21+ def test_case (self , case : str , expected : list [str ]):
22+ # When
23+ with (
24+ patch ("sys.stdin.readline" , side_effect = case ),
25+ patch ("sys.stdout" , new_callable = StringIO ) as output ,
26+ ):
27+ Problem ().solve ()
28+
29+ result = output .getvalue ().rstrip ()
30+
31+ # Then
32+ self .assertEqual ("\n " .join (expected ), result )
33+
34+
35+ if __name__ == "__main__" :
36+ unittest .main ()
You can’t perform that action at this time.
0 commit comments