結果
| 問題 | No.2864 String of yuusaan | 
| コンテスト | |
| ユーザー |  forest3 | 
| 提出日時 | 2025-02-28 21:41:24 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 252 bytes | 
| コンパイル時間 | 1,604 ms | 
| コンパイル使用メモリ | 161,808 KB | 
| 実行使用メモリ | 8,232 KB | 
| 最終ジャッジ日時 | 2025-02-28 21:41:30 | 
| 合計ジャッジ時間 | 2,517 ms | 
| ジャッジサーバーID (参考情報) | judge6 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 19 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for( int i = 0; i < n; i++ )
using ll = long long;
int main() {
	ll N, K;
	cin >> N >> K;
	string s = "yuusaanuusaa";
	int sz = s.size();
	K--;
	int m = K % sz;
	cout << s[m] << endl;
}
            
            
            
        