├── .gitignore ├── LICENSE ├── README.md ├── classes ├── domjudge.py └── pta.py ├── config.json ├── demo ├── contest │ └── logo.png ├── event-feed.json ├── organizations │ ├── 1 │ │ └── logo.png │ ├── 2 │ │ └── logo.png │ ├── 3 │ │ └── logo.png │ ├── 4 │ │ └── logo.png │ ├── 5 │ │ └── logo.png │ └── 6 │ │ └── logo.png └── teams │ ├── 42 │ └── photo.png │ ├── 43 │ └── photo.png │ ├── 44 │ └── photo.png │ ├── 45 │ └── photo.png │ ├── 46 │ └── photo.png │ ├── 47 │ └── photo.png │ ├── 48 │ └── photo.png │ ├── 49 │ └── photo.png │ ├── 50 │ └── photo.png │ ├── 51 │ └── photo.png │ ├── 52 │ └── photo.png │ ├── 53 │ └── photo.png │ └── 54 │ └── photo.png ├── main.py ├── pta.json ├── requirements.txt └── utils ├── XML.py ├── __init__.py ├── argument_parser.py ├── config_loader.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/README.md -------------------------------------------------------------------------------- /classes/domjudge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/classes/domjudge.py -------------------------------------------------------------------------------- /classes/pta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/classes/pta.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/config.json -------------------------------------------------------------------------------- /demo/contest/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/contest/logo.png -------------------------------------------------------------------------------- /demo/event-feed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/event-feed.json -------------------------------------------------------------------------------- /demo/organizations/1/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/organizations/1/logo.png -------------------------------------------------------------------------------- /demo/organizations/2/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/organizations/2/logo.png -------------------------------------------------------------------------------- /demo/organizations/3/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/organizations/3/logo.png -------------------------------------------------------------------------------- /demo/organizations/4/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/organizations/4/logo.png -------------------------------------------------------------------------------- /demo/organizations/5/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/organizations/5/logo.png -------------------------------------------------------------------------------- /demo/organizations/6/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/organizations/6/logo.png -------------------------------------------------------------------------------- /demo/teams/42/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/42/photo.png -------------------------------------------------------------------------------- /demo/teams/43/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/43/photo.png -------------------------------------------------------------------------------- /demo/teams/44/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/44/photo.png -------------------------------------------------------------------------------- /demo/teams/45/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/45/photo.png -------------------------------------------------------------------------------- /demo/teams/46/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/46/photo.png -------------------------------------------------------------------------------- /demo/teams/47/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/47/photo.png -------------------------------------------------------------------------------- /demo/teams/48/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/48/photo.png -------------------------------------------------------------------------------- /demo/teams/49/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/49/photo.png -------------------------------------------------------------------------------- /demo/teams/50/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/50/photo.png -------------------------------------------------------------------------------- /demo/teams/51/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/51/photo.png -------------------------------------------------------------------------------- /demo/teams/52/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/52/photo.png -------------------------------------------------------------------------------- /demo/teams/53/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/53/photo.png -------------------------------------------------------------------------------- /demo/teams/54/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/demo/teams/54/photo.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/main.py -------------------------------------------------------------------------------- /pta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/pta.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/XML.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/utils/XML.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/argument_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/utils/argument_parser.py -------------------------------------------------------------------------------- /utils/config_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/utils/config_loader.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lanly109/icpc-resolver-from-domjudge/HEAD/utils/utils.py --------------------------------------------------------------------------------