結果

問題 No.2868 Another String of yuusaan
ユーザー 👑 rin204rin204
提出日時 2024-08-30 23:16:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 689 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 53,756 KB
最終ジャッジ日時 2024-08-30 23:16:13
合計ジャッジ時間 2,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,032 KB
testcase_01 AC 35 ms
52,864 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 36 ms
52,816 KB
testcase_04 AC 38 ms
53,116 KB
testcase_05 AC 35 ms
52,196 KB
testcase_06 AC 34 ms
53,212 KB
testcase_07 AC 36 ms
52,796 KB
testcase_08 AC 38 ms
52,200 KB
testcase_09 AC 37 ms
53,040 KB
testcase_10 AC 35 ms
52,304 KB
testcase_11 AC 34 ms
51,876 KB
testcase_12 AC 34 ms
53,216 KB
testcase_13 WA -
testcase_14 AC 36 ms
51,884 KB
testcase_15 AC 34 ms
52,684 KB
testcase_16 WA -
testcase_17 AC 39 ms
52,876 KB
testcase_18 AC 36 ms
52,956 KB
testcase_19 AC 36 ms
53,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
if n >= k:
    print("y")
    exit()

la = [4]
lb = [3]
le = [7]
for _ in range(n):
    if le[-1] >= k:
        break

    na = la[-1] * 4
    nb = la[-1] * 3 + lb[-1]
    la.append(na)
    lb.append(nb)
    le.append(na + nb)

S = "yuusaan"

l = len(le)
k -= n - l
if k <= 0:
    print("y")
    exit()

S = "yuusaan"
p = len(la) - 1
while p >= 0:
    if p == 0:
        print(S[k - 1])
        exit()
    for s in S:
        if k == 1:
            print(s)
            exit()
        if s in "ua":
            if k > le[p - 1]:
                k -= le[p - 1]
            else:
                p -= 1
                break
        else:
            k -= 1
0