結果
| 問題 | No.2868 Another String of yuusaan |
| コンテスト | |
| ユーザー |
tottoripaper
|
| 提出日時 | 2024-09-03 15:26:37 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 17 ms / 2,000 ms |
| コード長 | 1,089 bytes |
| 記録 | |
| コンパイル時間 | 1,019 ms |
| コンパイル使用メモリ | 213,776 KB |
| 実行使用メモリ | 16,128 KB |
| 最終ジャッジ日時 | 2026-07-05 14:17:12 |
| 合計ジャッジ時間 | 2,316 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
#include <bits/stdc++.h>
using ll = std::int64_t;
ll f(int i){
return (1ll << (1 + 2 * i)) - 1;
}
int main(){
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
ll N, K;
std::cin >> N >> K;
K -= std::max<ll>(N - 30, 0);
if(K <= 0){
std::cout << 'y' << std::endl;
return 0;
}
N = std::min<ll>(N, 30);
for(int i=N;i>1;i--){
K -= 1;
if(K <= 0){
std::cout << 'y' << std::endl;
return 0;
}
ll l = f(i - 1);
if(K <= l){
continue;
}
K -= l;
if(K <= l){
continue;
}
K -= l;
K -= 1;
if(K <= 0){
std::cout << 's' << std::endl;
return 0;
}
if(K <= l){
continue;
}
K -= l;
if(K <= l){
continue;
}
K -= l;
K -= 1;
if(K <= 0){
std::cout << 'n' << std::endl;
return 0;
}
}
std::cout << "yuusaan"[(K - 1) % 7] << std::endl;
}
tottoripaper