結果
問題 | No.2551 2, 3, 5, 7 Game |
ユーザー | tonphy |
提出日時 | 2023-11-25 15:05:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 548 bytes |
コンパイル時間 | 1,071 ms |
コンパイル使用メモリ | 68,276 KB |
実行使用メモリ | 16,960 KB |
最終ジャッジ日時 | 2024-09-26 10:49:32 |
合計ジャッジ時間 | 8,022 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include<iostream> #include<map> using namespace std; typedef long long ll; ll N; ll d[4]={7,5,3,2}; int dfs(ll num,int stat); int main(){ int t; cin>>t; for(int i=0;i<t;i++){ cin>>N; if(dfs(1,1)==1){ cout<<"sepa"<<endl; }else{ cout<<"ryota"<<endl; } } return(0); } int dfs(ll num,int stat){ if(num>=N){ return(stat); } bool success=false; for(int i=0;i<4;i++){ if(dfs(num*d[i],stat^1)==stat){ success=true; } } if(success){ return(stat); } return(stat^1); }