quirino (codeforces)

Race #4

View Pit Stop page for race #4 by codeforcesGhost race

View profile for quirino (codeforces)

Official speed 76.24 wpm (29.91 seconds elapsed during race)
Race Start May 26, 2022 3:49:01am UTC
Race Finish May 26, 2022 3:49:31am UTC
Outcome No win (2 of 4)
Opponents 1. leoh8r (81.67 wpm)
Accuracy 95.0%
Points 29.22
Text #10019 (Length: 190 characters)

import string from random import * characters = string.ascii_letters + string.punctuation + string.digits password = "".join(choice(characters) for x in range(randint(8, 16))) print password