結果

問題 No.2868 Another String of yuusaan
ユーザー tassei903tassei903
提出日時 2024-08-30 21:55:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 1,172 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-08-30 21:55:15
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,564 KB
testcase_01 AC 40 ms
52,528 KB
testcase_02 AC 38 ms
53,008 KB
testcase_03 AC 38 ms
52,344 KB
testcase_04 AC 37 ms
52,956 KB
testcase_05 AC 36 ms
52,800 KB
testcase_06 AC 41 ms
52,340 KB
testcase_07 AC 37 ms
52,928 KB
testcase_08 AC 38 ms
52,948 KB
testcase_09 AC 37 ms
52,680 KB
testcase_10 AC 37 ms
53,208 KB
testcase_11 AC 37 ms
52,332 KB
testcase_12 AC 38 ms
53,512 KB
testcase_13 AC 40 ms
53,284 KB
testcase_14 AC 36 ms
52,320 KB
testcase_15 AC 38 ms
53,064 KB
testcase_16 AC 37 ms
53,032 KB
testcase_17 AC 37 ms
53,668 KB
testcase_18 AC 37 ms
53,744 KB
testcase_19 AC 37 ms
52,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


def L(k):
    return 2 * 4 ** k - 1

def f(k, n):
    #print(k, n)
    if k == 1:
        return "yuusaan"[n]
    if n == 0:
        return "y"
    elif n - 1 < 2 * L(k-1):
        return f(k-1, (n - 1) % L(k-1))
    elif n == 2 * L(k-1) + 1:
        return "s"
    elif n - 2 - 2 * L(k-1) < 2 * L(k-1):
        return f(k-1, (n - 2 - 2 * L(k-1)) % L(k-1))
    else:
        return "n"
    
def g(k, n):
    if n < k:
        return "y"
    elif k <= 30:
        return f(k, n)
    else:
        n -= k - 30
        return f(30, n)

# from random import randint
# for _ in range(100):
#     K = randint(1, 1000)
#     N = randint(0, 10 ** 15)
#     if L(K) <= N:
#         continue
#     if g(K, N) != f(K, N):
#         print(K, N)
#         print(g(K, N), f(K, N))
#         break
k, n = na()
n -= 1
print(g(k, n))
0