結果

問題 No.612 Move on grid
ユーザー RyutoRyuto
提出日時 2017-12-12 23:05:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 881 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 277,760 KB
最終ジャッジ日時 2024-05-08 05:27:41
合計ジャッジ時間 7,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

#t = int(input().strip())
#indat = [int(x) for x in input().split()]
t = 120
indat = [12, -1, 2, -1212, 1212]


points = {(0, 0, 0):1}
moves = [(1, 0, 0), (0, 1, 0), (0, 0, 1)]
moves = set(moves)

for i in range(t):
    tmp = {}
    for point, times in points.items():
        for move in moves:
            a = tuple([x + y for (x, y) in zip(point, move)])
            if tmp.get(a) == None:
                tmp[a] = times
            else:
                tmp[a] += times
            a = tuple([x - y for (x, y) in zip(point, move)])
            if tmp.get(a) == None:
                tmp[a] = times
            else:
                tmp[a] += times
    points = tmp

p = 0
for point, times in points.items():
    eqs = sum([a * x for (a, x) in zip(indat[:3], point)])
    if eqs >= indat[3] and eqs <= indat[4]:
        p += times

print(p % (10**9 + 7))
0