結果
問題 | No.2551 2, 3, 5, 7 Game |
ユーザー | cho435 |
提出日時 | 2023-11-28 22:18:10 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 589 bytes |
コンパイル時間 | 5,057 ms |
コンパイル使用メモリ | 272,812 KB |
実行使用メモリ | 10,956 KB |
最終ジャッジ日時 | 2024-09-26 13:09:29 |
合計ジャッジ時間 | 11,072 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 451 ms
10,924 KB |
testcase_01 | AC | 518 ms
5,532 KB |
testcase_02 | AC | 471 ms
5,644 KB |
testcase_03 | AC | 452 ms
5,684 KB |
testcase_04 | AC | 496 ms
5,656 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; #define rep(i,n) for(int i=0;i<(int)(n);i++) using mint = atcoder::modint998244353; int main(){ int t; cin>>t; rep(Ti,t){ ll n; cin>>n; unordered_map<ll,int> mp; auto dfs=[&](auto self,ll x){ if(x>=n) return 1; if(mp.count(x)) return mp.at(x); set<int>st={0,1,2,3,4}; st.erase(self(self,x*2)); st.erase(self(self,x*3)); st.erase(self(self,x*5)); st.erase(self(self,x*7)); return mp[x]=*st.begin(); }; int rt=dfs(dfs,1); cout<<(rt?"sepa\n":"ryota\n"); } }