結果

問題 No.1579 New Type of Nim
ユーザー momoyuumomoyuu
提出日時 2024-08-07 22:08:18
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,493 bytes
コンパイル時間 1,054 ms
コンパイル使用メモリ 91,228 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-07 22:08:21
合計ジャッジ時間 2,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);


    // vector<vector<int>> vis(100,vector<int>(100,0)),memo(100,vector<int>(100,0));

    // auto calc = [&](auto calc,int a,int b) -> int {
    //     if(vis[a][b]++) return memo[a][b];
    //     if(a==0||b==0) {
    //         return memo[a][b] = 1;
    //     }
    //     bool can = false;
    //     for(int i = 1;i<=a;i++){
    //         int na = a - i;
    //         if(na==b){
    //             int g = calc(calc,na,b);
    //             if(g==1) can = true;
    //         }else{
    //             int g = calc(calc,na,b);
    //             if(g==0) can = true;
    //         }
    //     }
    //     for(int i = 1;i<=b;i++){
    //         int nb = b - i;
    //         int g = calc(calc,a,nb);
    //         if(nb==a){
    //             if(g==1) can = true;
    //         }else{
    //             if(g==0) can = true;
    //         }
    //     }
    //     if(can) return memo[a][b] = 1;
    //     return memo[a][b] = 0;
    // };
    // for(int i = 1;i<=10;i++){
    //     for(int j = i;j<=10;j++){
    //         int g = calc(calc,i,j);
    //         if(g==1) cout<<i<<" "<<j<<" P\n";
    //         else cout<<i<<" "<<j<<" Q\n";
    //     }
    // }
    ll a,b;
    cin>>a>>b;
    if(a>b) swap(a,b);
    if(a%2==1&&b<=a+1){
        cout<<"Q\n";
    }else{
        cout<<"P\n";
    }
}   

0