結果

問題 No.2864 String of yuusaan
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-08-30 22:03:59
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 200,620 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-26 14:36:04
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll siz[30];
int mss;
string key = "yuusaan";
char calc(int L, ll K) {
	if (L == 1) {
		return key[K - 1];
	}
	int ans = 0;
	while (1) {
		ll w = (ans % 6 ? 1ll : siz[L - 1]);
		K -= w;
		if (K <= 0) {
			K += w;
			break;
		}
		ans ++;
	}
	if (ans % 6) {
		return key[ans];
	} else {
		return calc(L - 1, K);
	}
}
int main () {
	ll N, K;
	cin >> N >> K;
	siz[0] = 1;
	mss = 1;
	while (siz[mss - 1] < K) {
		siz[mss] = siz[mss - 1] * 2 + 5;
		mss ++;
	}
	N = min(N, (ll)mss);
	cout << calc(N, K) << endl;
}
0