| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 411 | 郭** | 足球联赛积分2 | Python3 | Accepted | 28 MS | 3384 KB | 165 | 2023-11-17 09:53:04 |
n=int(input()) score=0 for i in range(n): a,b=map(int, input().split()) if a > b: score += 3 elif a == b: score += 1 print(score)