結果

問題 No.1315 渦巻洞穴
ユーザー KudeKude
提出日時 2020-12-12 21:58:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,658 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 98,812 KB
最終ジャッジ日時 2024-09-19 22:28:33
合計ジャッジ時間 7,213 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,976 KB
testcase_01 WA -
testcase_02 AC 39 ms
53,380 KB
testcase_03 AC 35 ms
54,600 KB
testcase_04 AC 36 ms
53,144 KB
testcase_05 AC 37 ms
53,200 KB
testcase_06 WA -
testcase_07 AC 35 ms
52,580 KB
testcase_08 AC 34 ms
54,208 KB
testcase_09 AC 35 ms
52,652 KB
testcase_10 WA -
testcase_11 AC 33 ms
53,352 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 62 ms
81,352 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 58 ms
78,372 KB
testcase_19 AC 59 ms
82,320 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 49 ms
72,496 KB
testcase_23 AC 58 ms
84,176 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 60 ms
85,120 KB
testcase_27 AC 60 ms
86,920 KB
testcase_28 AC 61 ms
82,188 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 61 ms
85,096 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 58 ms
83,896 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 59 ms
83,296 KB
testcase_41 AC 56 ms
80,788 KB
testcase_42 WA -
testcase_43 AC 55 ms
80,180 KB
testcase_44 AC 57 ms
81,072 KB
testcase_45 WA -
testcase_46 AC 56 ms
80,876 KB
testcase_47 AC 58 ms
79,844 KB
testcase_48 WA -
testcase_49 AC 60 ms
81,272 KB
testcase_50 AC 66 ms
88,316 KB
testcase_51 WA -
testcase_52 AC 63 ms
88,024 KB
testcase_53 AC 60 ms
80,504 KB
testcase_54 WA -
testcase_55 AC 57 ms
79,860 KB
testcase_56 AC 63 ms
88,156 KB
testcase_57 WA -
testcase_58 AC 65 ms
89,576 KB
testcase_59 AC 41 ms
64,192 KB
testcase_60 AC 55 ms
78,228 KB
testcase_61 AC 51 ms
73,788 KB
testcase_62 WA -
testcase_63 AC 42 ms
64,464 KB
testcase_64 AC 59 ms
80,020 KB
testcase_65 AC 51 ms
74,568 KB
testcase_66 WA -
testcase_67 AC 41 ms
65,016 KB
testcase_68 AC 47 ms
69,992 KB
testcase_69 AC 51 ms
74,516 KB
testcase_70 WA -
testcase_71 AC 44 ms
65,276 KB
testcase_72 AC 49 ms
70,128 KB
testcase_73 AC 52 ms
75,256 KB
testcase_74 AC 49 ms
69,996 KB
testcase_75 WA -
testcase_76 WA -
testcase_77 AC 55 ms
75,928 KB
testcase_78 AC 46 ms
66,540 KB
testcase_79 AC 49 ms
75,048 KB
testcase_80 AC 52 ms
74,980 KB
testcase_81 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

s, t = map(int, input().split())

def f(n):
    if n % 2 == 1:
        ans = []
        k = 0
        while (2 * (k + 1) + 1) ** 2 <= n:
            ans.append(3)
            ans.append(0)
            k += 1
        now = (2 * k + 1) ** 2
        if now == n:
            return ans
        ans.append(0)
        ans.append(1)
        now += 2
        k += 1
        while now < n and now < (2 * k - 1) ** 2 + 2 * k - 1:
            ans.append(1)
            ans.append(1)
            now += 2
        if now == n:
            return ans
        ans.append(1)
        ans.append(2)
        now += 2
        while now < n and now < (2 * k - 1) ** 2 + 4 * k - 1:
            ans.append(2)
            ans.append(2)
            now += 2
        if now == n:
            return ans
        ans.append(2)
        ans.append(3)
        now += 2
        while now < n and now < (2 * k - 1) ** 2 + 6 * k - 1:
            ans.append(3)
            ans.append(3)
            now += 2
        if now == n:
            return ans
        ans.append(3)
        ans.append(0)
        now += 2
        while now < n:
            ans.append(0)
            ans.append(0)
            now += 2
        return ans
    else:
        ans = [3]
        k = 1
        while (2 * k - 1) ** 2 + 1 < n:
            ans.append(0)
            ans.append(3)
            k += 1
        now = (2 * k - 1) ** 2 + 1
        if now == n:
            return ans
        k -= 1
        while now > n and now > (2 * k - 1) ** 2 + 6 * k + 1:
            ans.append(2)
            ans.append(2)
            now -= 2
        if now == n:
            return ans
        ans.append(2)
        ans.append(1)
        now -= 2
        while now > n and now > (2 * k - 1) ** 2 + 4 * k + 1:
            ans.append(1)
            ans.append(1)
            now -= 2
        if now == n:
            return ans
        ans.append(1)
        ans.append(0)
        now -= 2
        while now > n and now > (2 * k - 1) ** 2 + 2 * k + 1:
            ans.append(0)
            ans.append(0)
            now -= 2
        if now == n:
            return ans
        ans.append(0)
        ans.append(3)
        now -= 2
        while now > n:
            ans.append(3)
            ans.append(3)
            now -= 2
        return ans

ps, pt = f(s), f(t)
ones = len(ps) // 2 + len(pt) // 2 + 2
ans = [(t + 2) % 4 for t in reversed(ps)]

if s % 2 == 0:
    ans.append(3)
else:
    ans.append(0)
ans.append(2)
ans.append(0)
ones += 1
if ones % 2 == 1:
    ans.append(1)
    ans.append(3)
if t % 2 == 0:
    ans.append(1)
else:
    ans.append(2)
ans += pt
print(0)
print(len(ans))
print(''.join('RULD'[a] for a in ans))
0