結果

問題 No.1579 New Type of Nim
ユーザー shotoyooshotoyoo
提出日時 2021-07-02 22:29:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 916 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 63,116 KB
最終ジャッジ日時 2024-06-29 12:18:38
合計ジャッジ時間 2,749 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 47 ms
61,184 KB
testcase_03 AC 49 ms
60,928 KB
testcase_04 AC 47 ms
61,312 KB
testcase_05 AC 47 ms
61,184 KB
testcase_06 AC 47 ms
61,440 KB
testcase_07 AC 47 ms
60,928 KB
testcase_08 AC 46 ms
61,184 KB
testcase_09 AC 51 ms
61,184 KB
testcase_10 AC 47 ms
60,800 KB
testcase_11 AC 47 ms
61,184 KB
testcase_12 AC 49 ms
61,440 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 47 ms
61,184 KB
testcase_24 AC 46 ms
61,312 KB
testcase_25 AC 48 ms
60,928 KB
testcase_26 AC 48 ms
60,928 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 47 ms
60,928 KB
testcase_30 WA -
testcase_31 AC 47 ms
61,312 KB
testcase_32 AC 49 ms
61,312 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


a,b = list(map(int, input().split()))
n = 20
dp = [[0]*n for _ in range(n)]
for i in range(n):
    for j in range(n):
        if i==j==0:
            continue
        ok = 0
        for k in range(1,i+1):
            if i-k==j:
                continue
            if dp[i-k][j]==0:
                ok = 1
#                 print(i,i-k,j)
        for k in range(1,j+1):
            if j-k==i:
                continue
            if dp[i][j-k]==0:
                ok = 1
        dp[i][j] = ok
if a==b:
    if a%2==0:
        ans = "Q"
    else:
        ans = "P"
elif abs(a-b)==1:
    v = min(a,b)
    if v%2==0:
        ans = "Q"
    else:
        ans = "P"
else:
    ans = "P"
print(ans)
0