This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import random | |
import copy | |
import collections | |
import Queue | |
import sys | |
T = 7 | |
N = 50000 | |
W1, W2 = 1000, 10000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Change the variables MY_ID and SERVER_FILE_PATH, and run this file | |
# The summary will be generated as soon as a game starts | |
import sys | |
import time | |
import os | |
import re | |
import requests | |
from multiprocessing import Pool | |
from watchdog.observers import Observer | |
from watchdog.events import FileSystemEventHandler |