結果

問題 No.1579 New Type of Nim
ユーザー shotoyooshotoyoo
提出日時 2021-07-02 22:32:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 63,316 KB
最終ジャッジ日時 2024-07-23 05:22:01
合計ジャッジ時間 2,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,376 KB
testcase_01 AC 47 ms
61,816 KB
testcase_02 AC 47 ms
62,120 KB
testcase_03 AC 47 ms
62,840 KB
testcase_04 AC 48 ms
62,452 KB
testcase_05 AC 47 ms
61,952 KB
testcase_06 AC 47 ms
63,124 KB
testcase_07 AC 46 ms
62,300 KB
testcase_08 AC 48 ms
62,508 KB
testcase_09 AC 49 ms
61,888 KB
testcase_10 AC 47 ms
62,072 KB
testcase_11 AC 46 ms
61,896 KB
testcase_12 AC 46 ms
62,844 KB
testcase_13 AC 48 ms
61,596 KB
testcase_14 AC 47 ms
62,056 KB
testcase_15 AC 46 ms
62,260 KB
testcase_16 AC 46 ms
62,380 KB
testcase_17 AC 48 ms
63,316 KB
testcase_18 AC 47 ms
61,992 KB
testcase_19 AC 47 ms
62,120 KB
testcase_20 AC 47 ms
62,952 KB
testcase_21 AC 47 ms
61,604 KB
testcase_22 AC 47 ms
62,380 KB
testcase_23 AC 47 ms
62,196 KB
testcase_24 AC 49 ms
62,900 KB
testcase_25 AC 49 ms
61,924 KB
testcase_26 AC 47 ms
61,852 KB
testcase_27 AC 48 ms
62,640 KB
testcase_28 AC 47 ms
61,604 KB
testcase_29 AC 47 ms
61,944 KB
testcase_30 AC 48 ms
61,512 KB
testcase_31 AC 47 ms
62,668 KB
testcase_32 AC 48 ms
62,820 KB
testcase_33 AC 48 ms
63,076 KB
権限があれば一括ダウンロードができます

ソースコード

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):
    dp[i][0] = dp[0][i] = 1
for i in range(n):
    for j in range(n):
        if i==j==0:
            continue
        if i==0 or 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
        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 = "P"
    else:
        ans = "Q"
elif abs(a-b)==1:
    v = min(a,b)
    if v%2==0:
        ans = "P"
    else:
        ans = "Q"
else:
    ans = "P"
print(ans)
0