結果

問題 No.5016 Worst Mayor
ユーザー maron8676
提出日時 2023-04-29 14:22:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 369 bytes
コンパイル時間 534 ms
コンパイル使用メモリ 87,216 KB
実行使用メモリ 111,128 KB
スコア 0
最終ジャッジ日時 2023-04-29 14:22:53
合計ジャッジ時間 7,162 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other TLE * 1 -- * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque
from sys import stdin

readline = stdin.readline


def li():
    return list(map(int, readline().split()))


N, T = li()

house_dict = dict()
company_dict = dict()
for i in range(N):
    a, b, c, d = li()
    house_dict[i] = [a - 1, b - 1]
    company_dict[i] = [c - 1, d - 1]

for t in range(T):
    u, v = li()
    print(3)
0