結果

問題 No.5016 Worst Mayor
ユーザー shim0shim0
提出日時 2023-04-29 16:25:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 1,245 bytes
コンパイル時間 1,278 ms
コンパイル使用メモリ 86,864 KB
実行使用メモリ 94,696 KB
スコア 50,000,000
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 16:26:50
合計ジャッジ時間 15,984 ms
ジャッジサーバーID
(参考情報)
judge11 / judge16
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 256 ms
94,308 KB
testcase_01 AC 221 ms
94,292 KB
testcase_02 AC 221 ms
93,684 KB
testcase_03 AC 224 ms
94,164 KB
testcase_04 AC 220 ms
94,024 KB
testcase_05 AC 231 ms
94,132 KB
testcase_06 AC 225 ms
94,096 KB
testcase_07 AC 225 ms
93,600 KB
testcase_08 AC 224 ms
94,020 KB
testcase_09 AC 255 ms
94,212 KB
testcase_10 AC 213 ms
94,352 KB
testcase_11 AC 222 ms
94,324 KB
testcase_12 AC 222 ms
93,708 KB
testcase_13 AC 218 ms
93,872 KB
testcase_14 AC 250 ms
94,296 KB
testcase_15 AC 218 ms
94,172 KB
testcase_16 AC 222 ms
93,904 KB
testcase_17 AC 219 ms
94,244 KB
testcase_18 AC 235 ms
94,012 KB
testcase_19 AC 220 ms
93,968 KB
testcase_20 AC 221 ms
94,048 KB
testcase_21 AC 225 ms
93,720 KB
testcase_22 AC 227 ms
94,068 KB
testcase_23 AC 252 ms
94,040 KB
testcase_24 AC 221 ms
94,456 KB
testcase_25 AC 213 ms
94,520 KB
testcase_26 AC 215 ms
93,824 KB
testcase_27 AC 225 ms
94,124 KB
testcase_28 AC 228 ms
94,120 KB
testcase_29 AC 222 ms
93,832 KB
testcase_30 AC 221 ms
93,956 KB
testcase_31 AC 218 ms
94,068 KB
testcase_32 AC 218 ms
93,888 KB
testcase_33 AC 227 ms
94,132 KB
testcase_34 AC 216 ms
94,308 KB
testcase_35 AC 213 ms
93,904 KB
testcase_36 AC 213 ms
93,996 KB
testcase_37 AC 227 ms
93,964 KB
testcase_38 AC 216 ms
93,852 KB
testcase_39 AC 220 ms
93,684 KB
testcase_40 AC 219 ms
94,532 KB
testcase_41 AC 215 ms
94,432 KB
testcase_42 AC 229 ms
94,020 KB
testcase_43 AC 223 ms
94,696 KB
testcase_44 AC 224 ms
93,908 KB
testcase_45 AC 222 ms
94,160 KB
testcase_46 AC 223 ms
94,036 KB
testcase_47 AC 227 ms
93,900 KB
testcase_48 AC 217 ms
94,248 KB
testcase_49 AC 223 ms
94,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class State:
    def __init__(self):
        _n, _t = map(int, input().split())
        self.dp = [[0 for j in range(14 * 14)] for i in range(14 * 14)]
        for start_i in range(0, 14):
            for start_j in range(0, 14):
                for goal_i in range(0, 14):
                    for goal_j in range(0, 14):
                        value = abs(start_i - start_j) + abs(goal_i - goal_j)
                        self.dp[start_i * 14 + start_j][goal_i * 14 + goal_j] = value * 1000
                        self.dp[goal_i * 14 + goal_j][start_i * 14 + start_j] = value * 1000
        self.sum_s = 0
        self.paths = {}
        for _ in range(3000):
            a, b, c, d = map(int, input().split())
            a -= 1
            b -= 1
            c -= 1
            d -= 1
            self.paths[(a, b, c, d)] = self.dp[a * 14 + b][c * 14 + d]
            self.paths[(a, b, c, d)] = self.dp[c * 14 + d][a * 14 + b]
        self.highway_count = 0
        self.collaborator_count = 0
        self.money = 10**6

    def solve(self, t):
        _u, _v = map(int, input().split())
        print(2, flush=True)


def main():
    state = State()
    for t in range(400):
        state.solve(t)


if "__main__" == __name__:
    main()
0