結果

問題 No.1315 渦巻洞穴
ユーザー trineutrontrineutron
提出日時 2020-12-12 17:03:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-09-19 21:57:32
合計ジャッジ時間 5,641 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
11,008 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 26 ms
11,008 KB
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
11,008 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 34 ms
11,008 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 29 ms
11,008 KB
testcase_16 AC 33 ms
11,008 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 34 ms
11,136 KB
testcase_19 AC 33 ms
11,008 KB
testcase_20 AC 35 ms
11,136 KB
testcase_21 AC 34 ms
11,136 KB
testcase_22 AC 35 ms
11,008 KB
testcase_23 AC 34 ms
11,008 KB
testcase_24 AC 29 ms
11,008 KB
testcase_25 AC 38 ms
11,136 KB
testcase_26 AC 39 ms
11,264 KB
testcase_27 AC 38 ms
11,264 KB
testcase_28 AC 37 ms
11,264 KB
testcase_29 AC 39 ms
11,264 KB
testcase_30 AC 37 ms
11,264 KB
testcase_31 AC 37 ms
11,136 KB
testcase_32 AC 36 ms
11,136 KB
testcase_33 AC 38 ms
11,136 KB
testcase_34 AC 36 ms
11,136 KB
testcase_35 AC 36 ms
11,136 KB
testcase_36 AC 37 ms
11,008 KB
testcase_37 AC 31 ms
10,880 KB
testcase_38 AC 36 ms
11,008 KB
testcase_39 AC 39 ms
11,136 KB
testcase_40 AC 40 ms
11,264 KB
testcase_41 AC 43 ms
11,264 KB
testcase_42 AC 43 ms
11,264 KB
testcase_43 AC 42 ms
11,392 KB
testcase_44 AC 41 ms
11,264 KB
testcase_45 AC 42 ms
11,264 KB
testcase_46 AC 42 ms
11,264 KB
testcase_47 AC 42 ms
11,264 KB
testcase_48 AC 41 ms
11,264 KB
testcase_49 AC 40 ms
11,392 KB
testcase_50 AC 43 ms
11,264 KB
testcase_51 AC 41 ms
11,264 KB
testcase_52 AC 43 ms
11,264 KB
testcase_53 AC 42 ms
11,392 KB
testcase_54 AC 42 ms
11,392 KB
testcase_55 AC 42 ms
11,264 KB
testcase_56 AC 42 ms
11,264 KB
testcase_57 AC 42 ms
11,264 KB
testcase_58 AC 44 ms
11,264 KB
testcase_59 AC 35 ms
11,008 KB
testcase_60 AC 35 ms
11,008 KB
testcase_61 AC 35 ms
11,008 KB
testcase_62 AC 35 ms
11,008 KB
testcase_63 AC 36 ms
11,136 KB
testcase_64 AC 34 ms
11,008 KB
testcase_65 AC 33 ms
11,008 KB
testcase_66 AC 35 ms
11,008 KB
testcase_67 AC 33 ms
11,136 KB
testcase_68 AC 34 ms
11,008 KB
testcase_69 AC 32 ms
11,008 KB
testcase_70 AC 33 ms
11,136 KB
testcase_71 AC 36 ms
11,008 KB
testcase_72 AC 35 ms
11,008 KB
testcase_73 AC 35 ms
11,008 KB
testcase_74 AC 36 ms
11,008 KB
testcase_75 AC 27 ms
10,880 KB
testcase_76 AC 26 ms
10,880 KB
testcase_77 AC 35 ms
11,136 KB
testcase_78 AC 30 ms
11,008 KB
testcase_79 AC 34 ms
11,136 KB
testcase_80 AC 36 ms
11,264 KB
testcase_81 AC 36 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def pos(n):
    if n == 1:
        return 0, 0
    layer = int((math.sqrt(n) - 1) / 2)
    while (2 * layer + 1) ** 2 < n:
        layer += 1
    offset = (2 * layer - 1) ** 2
    edge = 2 * layer
    diff = n - offset - 1
    q, r = divmod(diff, edge)
    r += 1
    if q == 0:
        return layer, -layer + r
    elif q == 1:
        return layer - r, layer
    elif q == 2:
        return -layer, layer - r
    else:
        return -layer + r, -layer

def move(x, y):
    rev = {'L': 'R', 'R': 'L', 'U': 'D', 'D': 'U'}
    s = max(x, 0) * 'R' + max(-x, 0) * 'L' + max(y, 0) * 'U' + max(-y, 0) * 'D'
    res = ''
    for i in range(0, len(s) - 1, 2):
        res += s[i] + rev[s[i]] + s[i] + s[i + 1]
    if len(s) % 2:
        res += s[-1] + rev[s[-1]] + s[-1]
    return res

def move_rev(x, y):
    return move(x, y)[::-1]

s, t = map(int, input().split())
x0, y0 = pos(s)
x1, y1 = pos(t)
if (s + t) % 2 == 0:
    if s % 2 == 0:
        adj = 'DU'
    else:
        adj = ''
    ans = move(-x0, -y0) + 'RUL' + adj + move_rev(x1, y1 - 1)
else:
    ans = move(x1 - x0, y1 - y0)
print(0)
print(len(ans))
print(ans)
0