結果

問題 No.2868 Another String of yuusaan
ユーザー ShirotsumeShirotsume
提出日時 2024-08-30 22:50:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,030 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 58,020 KB
最終ジャッジ日時 2024-08-30 22:50:47
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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'
n = min(n, 40)
cnt = [4]
L = [7]
for i in range(min(n, 40)):
    cnt.append(cnt[-1] * 4)
    L.append(L[-1] + 6 * cnt[-2])


def solve(n, k):
    if n == 0:
        return S[k]
    else:
        mid = 'uusaa'
        if k == 0:
            return 'y'
        k -= 1
        if k < L[n - 1]:
            return solve(n - 1, k)
        k -= L[n - 1]
        if k < L[n - 1]:
            return solve(n - 1, k)
        k -= L[n - 1]
        if k == 0:
            return 's'
        k -= 1
        if k < L[n - 1]:
            return solve(n - 1, k)
        k -= L[n - 1]
        if k < L[n - 1]:
            return solve(n - 1, k)
        k -= L[n - 1]
        return 'n'
    
print(solve(n, k))
0