結果
問題 | No.1181 Product Sum for All Subsets |
ユーザー | outline |
提出日時 | 2020-12-21 18:01:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,442 bytes |
コンパイル時間 | 1,250 ms |
コンパイル使用メモリ | 130,684 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-21 13:01:24 |
合計ジャッジ時間 | 5,183 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> using namespace std; using ll = long long; using P = pair<int, int>; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } bool is_prime(ll x){ if(x == 1) return false; for(ll i = 2; i * i <= x; ++i){ if(x % i == 0) return false; } return true; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); ll X, Y; cin >> X >> Y; if(is_prime(X) || is_prime(Y)){ cout << "First\n"; return 0; } ll Z = X, W = Y; while(!is_prime(Z)) ++Z; while(!is_prime(W)) ++W; ll dist = (Z - X) + (W - Y); if(dist % 2 == 1) cout << "First\n"; else cout << "Second\n"; return 0; }