結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | hitoyozake |
提出日時 | 2018-06-03 10:55:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 579 ms / 5,000 ms |
コード長 | 1,667 bytes |
コンパイル時間 | 958 ms |
コンパイル使用メモリ | 110,876 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 16:11:12 |
合計ジャッジ時間 | 5,244 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 579 ms
5,248 KB |
testcase_03 | AC | 32 ms
5,248 KB |
testcase_04 | AC | 8 ms
5,248 KB |
testcase_05 | AC | 8 ms
5,248 KB |
testcase_06 | AC | 154 ms
5,248 KB |
testcase_07 | AC | 101 ms
5,248 KB |
testcase_08 | AC | 43 ms
5,248 KB |
testcase_09 | AC | 243 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 102 ms
5,248 KB |
testcase_12 | AC | 398 ms
5,248 KB |
testcase_13 | AC | 425 ms
5,248 KB |
testcase_14 | AC | 567 ms
5,248 KB |
testcase_15 | AC | 539 ms
5,248 KB |
testcase_16 | AC | 493 ms
5,248 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <numeric> #include <map> #include <cmath> #include <string> int main() { int n = 0; std::cin >> n; //邏�謨ー繧呈アゅa繧� std::vector<int> primes; std::vector<int> tmp; for(int i = 2; i <= n; ++i ) { tmp.push_back(i); } while( 1 ) { if(tmp.size()==0) break; int i = tmp[0]; primes.push_back(i); if(std::sqrt(n) <= i) break; std::vector<int> t; for(auto x: tmp){ if(x%i != 0){ t.push_back(x); } } tmp = t; } for(auto x: tmp){ primes.push_back(x); } //蜍昴■雋�縺僧ap繧剃ス懊k std::map<int, bool> winlose; winlose[0] = false; winlose[1] = false; for( int i = 2; i <= n; ++i ){ winlose[i] = false; for( auto const prime: primes) { if(prime > i ){ break; } if(i-prime >= 2&& winlose[i-prime]==false){ // std::cout << "win[ " << i << " ] root: " << prime << std::endl; // std::cout << "[i-prime]: " << winlose[i-prime] << std::endl; winlose[i] = true; } } } //for(auto i: primes) // std::cout << i << std::endl; for(auto i: winlose){ //std::cout << "winlose[ " << i.first << " ]: " << i.second << std::endl; } std::string wl = "Win"; if(winlose[n]==false) wl = "Lose"; std::cout << wl << std::endl; return 0; }