結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,964 KB
testcase_01 AC 38 ms
53,520 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 38 ms
52,948 KB
testcase_10 WA -
testcase_11 AC 38 ms
53,568 KB
testcase_12 AC 38 ms
53,568 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 37 ms
52,752 KB
testcase_18 AC 37 ms
52,768 KB
testcase_19 AC 37 ms
52,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())


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"
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