結果

問題 No.2868 Another String of yuusaan
ユーザー NachiaNachia
提出日時 2024-08-30 21:54:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 349 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-08-30 21:54:11
合計ジャッジ時間 1,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n,k = map(int,input().split())
n = min(n, 100)
l = [7]
for _ in range(105) :
	l.append(l[-1] * 4 + 3)
def f(n,k) :
	if n == 0 :
		return "ysnua"[(k*2+1)//3*3%5]
	for c in "yxxsxxn" :
	     if c == 'x' :
	     	if k < l[n-1] :
	     		return f(n-1,k)
	     	k -= l[n-1]
	     elif k == 0 :
	     	return c
	     else :
	     	k -= 1
print(f(n-1,k-1))
0