結果

問題 No.2864 String of yuusaan
ユーザー ShirotsumeShirotsume
提出日時 2024-08-30 21:34:42
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 747 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 849,036 KB
最終ジャッジ日時 2024-08-30 21:34:46
合計ジャッジ時間 3,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,476 KB
testcase_01 AC 42 ms
56,028 KB
testcase_02 MLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
def debug(*x):print('debug:',*x, file=sys.stderr)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n, k = mi()
n -= 1
k -= 1
S = 'yuusaan'

cnt = [2]
L = [7]
for i in range(n):
    cnt.append(cnt[-1] * 2)
    L.append(L[-1] + 6 * cnt[-2])
def solve(n, k):
    if n == 0:
        return S[k]
    else:
        mid = 'uusaa'
        
        if k >= L[n - 1] + 5:
            return solve(n - 1, k - L[n - 1] - 5)
        elif k >= L[n - 1]:
            return mid[k - L[n - 1]]
        else:
            return solve(n - 1, k)
    
print(solve(n, k))
0