結果

問題 No.2868 Another String of yuusaan
ユーザー 👑 rin204rin204
提出日時 2024-08-30 23:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 701 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-08-30 23:20:35
合計ジャッジ時間 2,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,500 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 39 ms
52,604 KB
testcase_03 AC 36 ms
53,104 KB
testcase_04 AC 36 ms
54,060 KB
testcase_05 AC 37 ms
53,360 KB
testcase_06 AC 36 ms
52,828 KB
testcase_07 AC 37 ms
52,744 KB
testcase_08 AC 37 ms
53,256 KB
testcase_09 AC 37 ms
52,492 KB
testcase_10 AC 38 ms
52,180 KB
testcase_11 AC 37 ms
53,136 KB
testcase_12 AC 37 ms
53,076 KB
testcase_13 AC 43 ms
52,636 KB
testcase_14 AC 39 ms
52,888 KB
testcase_15 AC 37 ms
52,508 KB
testcase_16 AC 44 ms
52,204 KB
testcase_17 AC 37 ms
53,636 KB
testcase_18 AC 36 ms
52,768 KB
testcase_19 AC 37 ms
52,212 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 s in "ua":
            if k > le[p - 1]:
                k -= le[p - 1]
            else:
                p -= 1
                break
        else:
            if k == 1:
                print(s)
                exit()
            k -= 1
0